mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
added test for cartesian lookup
This commit is contained in:
parent
a8aa5ff4eb
commit
bb155e1142
1 changed files with 20 additions and 0 deletions
|
@ -194,3 +194,23 @@
|
|||
- assert:
|
||||
that:
|
||||
- "'www.kennethreitz.org' in web_data"
|
||||
|
||||
- name: Test cartesian lookup
|
||||
debug: var={{item}}
|
||||
with_cartesian:
|
||||
- ["A", "B", "C"]
|
||||
- ["1", "2", "3"]
|
||||
register: product
|
||||
|
||||
- name: Verify cartesian lookup
|
||||
assert:
|
||||
that:
|
||||
- product.results[0]['item'] == ["A", "1"]
|
||||
- product.results[1]['item'] == ["A", "2"]
|
||||
- product.results[2]['item'] == ["A", "3"]
|
||||
- product.results[3]['item'] == ["B", "1"]
|
||||
- product.results[4]['item'] == ["B", "2"]
|
||||
- product.results[5]['item'] == ["B", "3"]
|
||||
- product.results[6]['item'] == ["C", "1"]
|
||||
- product.results[7]['item'] == ["C", "2"]
|
||||
- product.results[8]['item'] == ["C", "3"]
|
||||
|
|
Loading…
Reference in a new issue