ansible/test/integration/targets/win_pester/files/test03.tests.ps1
Jordan Borean 762fcf78b9
win_pester - Align dir scanning with Pester's defaults (#64880)
* win_pester - Align dir scanning with Pester's defaults

Co-authored-by: Coby Caldwell <cobycaldwell@gmail.com>

* Fix sanity issues
2019-11-15 13:53:30 +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
}
}