Publish preview version #42

Merged
OCram85 merged 25 commits from dev into master 2019-04-04 17:02:18 +02:00
1 changed files with 14 additions and 0 deletions
Showing only changes of commit 1ecf52b48a - Show all commits

View File

@ -74,6 +74,20 @@ Describe "New-CredentialStore" {
{ New-CredentialStore -Path (Join-Path -Path (Get-TempDir) -ChildPath '/dummy.json') -Shared -Confirm:$false} | Should -Throw
}
}
Context "Tests for Windows certificate store" {
It "Create new private store and skipt certificate linkin" {
{ New-CredentialStore -UseCertStore -Force } | Should -Not -Throw
$CS = Get-CredentialStore
$CS.PfxCertificate | Should -Be $null
$CS.Thumbprint | Should -Not -Be $null
}
It "Create new shared store and skipt certificate linkin" {
{ New-CredentialStore -Shared -UseCertStore -Force } | Should -Not -Throw
$CS = Get-CredentialStore -Shared
$CS.PfxCertificate | Should -Be $null
$CS.Thumbprint | Should -Not -Be $null
}
}
}
# Cleanup test stores and restore existing ones.