Merge remote-tracking branch 'upstream/master'

This commit is contained in:
jhoneill
2018-08-02 13:56:21 +01:00
6 changed files with 58 additions and 48 deletions

View File

@@ -0,0 +1,10 @@
Describe "ImportExcel File List" {
It "All files should exist" {
$fileList = Get-Content "$PSScriptRoot\..\filelist.txt"
foreach ($file in $fileList) {
$targetFile = "$PSScriptRoot\..\$file"
Test-Path $targetFile | Should Be $true
}
}
}