summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/include_import/undefined_var/playbook.yml
blob: 6576d50ae9679e50d1fffa5835faf823e52e1234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
- hosts: testhost
  gather_facts: false
  tasks:
    - include_tasks: "include_tasks.yml"
      ignore_errors: True
      register: "_include_tasks_result"
      when:
        - "_undefined == 'yes'"

    - assert:
        that:
          - "_include_tasks_result is failed"
          - "_include_tasks_task_result is not defined"
        msg: "'include_tasks' did not evaluate it's attached condition and failed"

    - include_role:
        name: "no_log"
      ignore_errors: True
      register: "_include_role_result"
      when:
        - "_undefined == 'yes'"

    - assert:
        that:
          - "_include_role_result is failed"
        msg: "'include_role' did not evaluate it's attached condition and failed"

    - import_tasks: include_that_defines_var.yml
      when:
        - "_undefined == 'yes'"

    - assert:
        that:
          - _include_defined_result == 'good'