mirror of https://github.com/ansible/ansible.git
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 filepull/58742/head
parent
48a518d9a3
commit
db5656cf6e
@ -0,0 +1,11 @@
|
||||
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
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue