summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/include_import/include_role_omit/playbook.yml
blob: a036906a6426808041d60135ca1141bdb4d011f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- hosts: localhost
  gather_facts: false
  vars:
    include_role_omit: false
  tasks:
    - include_role:
        name: foo
        tasks_from: '{{ omit }}'

    - assert:
        that:
          - include_role_omit is sameas(true)