summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/template/undefined_var_info.yml
blob: b96a58db142e1f85e532e82cb5688fea8e364ce1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- hosts: localhost
  gather_facts: no
  vars:
    foo: []
    bar: "{{ foo[0] }}"
  tasks:
    - debug:
        msg: "{{ bar }}"
      register: result
      ignore_errors: yes

    - assert:
        that:
          - '"foo[0]" in result.msg'
          - '"object has no element 0" in result.msg'