mirror of https://github.com/ansible/ansible.git
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.
20 lines
425 B
YAML
20 lines
425 B
YAML
5 years ago
|
- 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
|