762fcf78b9
* win_pester - Align dir scanning with Pester's defaults Co-authored-by: Coby Caldwell <cobycaldwell@gmail.com> * Fix sanity issues
11 lines
No EOL
258 B
PowerShell
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
|
|
}
|
|
} |