summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/include_import/public_exposure/no_bleeding.yml
blob: b9db7132903fe8479bcf6dbc91b8aeee1b5c9e25 (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
---
- hosts: testhost
  gather_facts: false
  tasks:
    - name: Static imports should expose vars at parse time, not at execution time
      assert:
        that:
          - static_defaults_var == 'static_defaults'
          - static_vars_var == 'static_vars'
    - import_role:
        name: static
    - assert:
        that:
          - static_tasks_var == 'static_tasks'
          - static_defaults_var == 'static_defaults'
          - static_vars_var == 'static_vars'

- hosts: testhost
  gather_facts: false
  tasks:
    - name: Ensure vars from import_roles do not bleed between plays
      assert:
        that:
          - static_defaults_var is undefined
          - static_vars_var is undefined