test for export-excel

This commit is contained in:
dfinke
2018-05-27 13:13:01 -04:00
parent 8906d7dbf4
commit 4bf1020431

View File

@@ -1,4 +1,9 @@
Describe "test" {
It 'Export-Excel should be there' {
((Get-Command export-excel -ErrorAction SilentlyContinue) -eq $null) | Should Be $false
}
It '$PSScriptRoot\Simple.xlsx should exist' {
Test-Path $PSScriptRoot\Simple.xlsx | Should Be $true
}