update pester tests

This commit is contained in:
OCram85 2018-03-12 16:03:32 +01:00
parent a440a61b10
commit 700208a44b
1 changed files with 3 additions and 1 deletions

View File

@ -25,10 +25,12 @@ Describe "Set-ChallengeFile" {
if (Test-Path -Path ("{0}\PSCredentialStore\Challenge.bin" -f $env:ProgramData)) {
Remove-Item -Path ("{0}\PSCredentialStore\Challenge.bin" -f $env:ProgramData)
}
Set-ChallengeFile | Should -Be $true
Set-ChallengeFile
Test-Path -Path ("{0}\PSCredentialStore\Challenge.bin" -f $env:ProgramData) | Should -Be $true
}
It "Existing Credential file should return error" {
{ Set-ChallengeFile } | Should -Throw
Remove-Item -Path ("{0}\PSCredentialStore\Challenge.bin" -f $env:ProgramData)
}
}
}