This commit is contained in:
OCram85 2022-06-28 11:26:41 +02:00
parent 8808f1c70b
commit c7529b5d89
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ Describe "New-CredentialStoreItem" {
Context "General Exception handling" {
Mock Test-CredentialStore { return $false } -ModuleName 'PSCredentialStore'
It "Missing CredentialStore should throw" {
{ New-CredentialStoreItem -Shared -Path 'C:\missingStore.json' -RemoteHost 'notrelevant' } | Should -Throw "Could not add anything"
{ New-CredentialStoreItem -Shared -Path '/tmp/missingStore.json' -RemoteHost 'notrelevant' } | Should -Throw "Could not add anything"
}
}
Context "Testing pipeline paramter" {