Migrates to Pester5+ tests #59

Merged
OCram85 merged 47 commits from Pester5 into master 2022-07-14 13:37:13 +02:00
1 changed files with 10 additions and 12 deletions
Showing only changes of commit a4fa937780 - Show all commits

View File

@ -5,18 +5,16 @@ BeforeAll {
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
It "Should not throw" {
$AttribParams = @{
Country = 'DE'
State = 'BW'
City = 'KA'
Organization = 'IT'
OrganizationalUnitName = ''
CommonName = 'MyCert'
}
{ New-CSCertAttribute @AttribParams } | Should -Not -Throw
}
}
}