summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/include_import_tasks_nested/tasks/main.yml
blob: 5d6726772f455665e36af89f8353e7451104fdea (plain)
1
2
3
4
5
6
7
8
9
10
11
- include_tasks: nested/nested_include.yml

- assert:
    that:
      - nested_adjacent_count|int == 1

- import_tasks: nested/nested_import.yml

- assert:
    that:
      - nested_adjacent_count|int == 2