ansible/test/integration/targets/lookup_list/tasks/main.yml
Rick Elrod f50df67517
coverage for lookup_list (#68683)
* coverage for lookup_list

Signed-off-by: Rick Elrod <rick@elrod.me>
2020-04-06 13:39:18 -05:00

19 lines
425 B
YAML

- name: Set variables to verify lookup_list
set_fact: "{{ item if item is string else item[0] }}={{ item }}"
with_list:
- a
- [b, c]
- d
- name: Verify lookup_list
assert:
that:
- a is defined
- b is defined
- c is not defined
- d is defined
- b is iterable and b is not string
- b|length == 2
- a == a
- b == ['b', 'c']
- d == d