89c8eb5a08
* Split up lookup integration tests. * Rename lookup_paths integration test. This will avoid confusing it for a test of the `paths` lookup plugin, which does not exist. * Fix lookup_pipe integration test. The test now verifies it receives the correct output. Adding a second task also causes code coverage to be properly registered for the lookup plugin. * Rename ini lookup test to match plugin name. * Update sanity ignore path.
19 lines
642 B
YAML
19 lines
642 B
YAML
- 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"]
|