add test for Get-CredentialStore

This commit is contained in:
OCram85 2018-03-13 15:51:02 +01:00
parent 610bed55e1
commit 4fd762bcc6
1 changed files with 3 additions and 0 deletions

View File

@ -33,5 +33,8 @@ Describe "Get-CredentialStore" {
{Get-CredentialStore -Path $TestCredentialStore} | Should Not Throw
}
It "Test3: Not existing path should return false" {
Get-CredentialStore -Path 'C:\foobar\CredentialStore.json' -Shared | Should -Be $false
}
}
}