summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/lookup_list/tasks/main.yml
blob: a9be8eccd932935897cbd38e1123f5424a047eff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
  - name: Set variables to verify lookup_list
    set_fact: "{{ item if (item is string)|bool 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