db5656cf6e
* correct argument name * added documentation * adding missing version_added to doc * correcting description in docs * change type to list * add tests * correct test file
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
|
|
}
|
|
} |