diff --git a/test/integration/targets/lookup_list/aliases b/test/integration/targets/lookup_list/aliases new file mode 100644 index 00000000000000..bc987654d97949 --- /dev/null +++ b/test/integration/targets/lookup_list/aliases @@ -0,0 +1,3 @@ +shippable/posix/group2 +skip/aix +skip/python2.6 # lookups are controller only, and we no longer support Python 2.6 on the controller diff --git a/test/integration/targets/lookup_list/tasks/main.yml b/test/integration/targets/lookup_list/tasks/main.yml new file mode 100644 index 00000000000000..3c03014eda60d9 --- /dev/null +++ b/test/integration/targets/lookup_list/tasks/main.yml @@ -0,0 +1,19 @@ +- 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