wip: remove param validation

This commit is contained in:
dfinke
2019-07-04 11:40:02 -04:00
parent 4581c2b3e9
commit 6d86108060
2 changed files with 15 additions and 2 deletions

View File

@@ -19,4 +19,8 @@
$actual = Import-Excel -Path "testRelative.xlsx"
$actual | Should Not Be $null
}
It "Should fail for not found" {
{ Import-Excel -Path "ExcelFileDoesNotExist.xlsx" } | Should Throw "'ExcelFileDoesNotExist.xlsx' file not found"
}
}