You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/win_pester/files/test03.test.ps1

11 lines
258 B
PowerShell

Describe -Name 'Test03 without tag' {
It -name 'Third Test without tag' {
{Get-Service} | Should Not Throw
}
}
Describe -Name 'Test03 with tag' -Tag tag1 {
It -name 'Third Test with tag' {
{Get-Service} | Should Not Throw
}
}