You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/lookup_list/tasks/main.yml

20 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