ansible/test/integration/targets/win_pester/files/test03.test.ps1
PRASOON KARUNAN V db5656cf6e Add support for pester tags (#57918)
* correct argument name

* added documentation

* adding missing version_added to doc

* correcting description in docs

* change type to list

* add tests

* correct test file
2019-07-05 07:45:52 +10:00

11 lines
No EOL
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
}
}