mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-24 13:50:22 -07:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
3
tests/integration/targets/lookup_cartesian/aliases
Normal file
3
tests/integration/targets/lookup_cartesian/aliases
Normal file
|
@ -0,0 +1,3 @@
|
|||
shippable/posix/group1
|
||||
skip/aix
|
||||
skip/python2.6 # lookups are controller only, and we no longer support Python 2.6 on the controller
|
22
tests/integration/targets/lookup_cartesian/tasks/main.yml
Normal file
22
tests/integration/targets/lookup_cartesian/tasks/main.yml
Normal file
|
@ -0,0 +1,22 @@
|
|||
- name: Test cartesian lookup
|
||||
debug: var=item
|
||||
register: product
|
||||
with_community.general.cartesian:
|
||||
- - A
|
||||
- B
|
||||
- C
|
||||
- - '1'
|
||||
- '2'
|
||||
- '3'
|
||||
- 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…
Add table
Add a link
Reference in a new issue