fix pester syntax

This commit is contained in:
OCram85 2018-03-12 13:59:41 +01:00
parent e2af175b9f
commit 793035fa47
1 changed files with 8 additions and 9 deletions

View File

@ -25,15 +25,14 @@ Describe "Test-ChallengeFile" {
It "No parameter and existing file should return true" {
Test-ChallengeFile | Should -Be $true
}
Context "Execute with parameter" {
$TestChFile = "{0}\resources\Challenge.bin" -f $RepoRoot
It "Provide valid path" {
Test-ChallengeFile -Path $TestChFile | Should -Be $true
}
It "Provide fake path" {
Test-ChallengeFile -Path "C:\notexisting.bin" | Should -Be $false
}
}
Context "Execute with parameter" {
$TestChFile = "{0}\resources\Challenge.bin" -f $RepoRoot
It "Provide valid path" {
Test-ChallengeFile -Path $TestChFile | Should -Be $true
}
It "Provide fake path" {
Test-ChallengeFile -Path "C:\notexisting.bin" | Should -Be $false
}
}
}