PSCredentialStore/src/Certificate/New-CSCertAttribute.Tests.ps1

23 lines
703 B
PowerShell

BeforeAll {
$ManifestFile = (Get-Item -Path "./src/*.psd1").FullName
Import-Module $ManifestFile -Force
}
Describe "New-CSCertAttribute" {
Context "Basis Tests" {
It "TShould not throw" {
{
$AttribParams = @{
Country = 'DE'
State = 'BW'
City = 'KA'
Organization = 'IT'
OrganizationalUnitName = ''
CommonName = 'MyCert'
}
New-CSCertAttribute @AttribParams
} | Should -Not -Throw
}
}
}