mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
added new tests any and all (#22665)
* added new tests any and all * updated code names
This commit is contained in:
parent
eb0b1e149d
commit
0c44959800
3 changed files with 31 additions and 1 deletions
|
@ -83,6 +83,27 @@ To see if a list includes or is included by another list, you can use 'issubset'
|
|||
|
||||
.. _path_tests:
|
||||
|
||||
.. versionadded:: 2.4
|
||||
|
||||
You can use `any` and `all` to check if any or all elements in a list are true or not::
|
||||
|
||||
vars:
|
||||
mylist:
|
||||
- 1
|
||||
- 3 == 3
|
||||
- True
|
||||
myotherlist:
|
||||
- False
|
||||
- True
|
||||
tasks:
|
||||
|
||||
- debug: msg="all are true!"
|
||||
when: mylist is all
|
||||
|
||||
- debug: msg="at least one is true"
|
||||
when: myotherlist|any
|
||||
|
||||
|
||||
Testing paths
|
||||
`````````````
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue