mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
10 lines
306 B
PowerShell
10 lines
306 B
PowerShell
Describe "ImportExcel File List" {
|
|
It "All files should exist".PadRight(90) {
|
|
$fileList = Get-Content "$PSScriptRoot\..\filelist.txt"
|
|
|
|
foreach ($file in $fileList) {
|
|
$targetFile = "$PSScriptRoot\..\$file"
|
|
Test-Path $targetFile | Should Be $true
|
|
}
|
|
}
|
|
} |