summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/include_import/test_grandparent_inheritance.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/include_import/test_grandparent_inheritance.yml')
-rw-r--r--test/integration/targets/include_import/test_grandparent_inheritance.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/test/integration/targets/include_import/test_grandparent_inheritance.yml b/test/integration/targets/include_import/test_grandparent_inheritance.yml
new file mode 100644
index 0000000..45a3d83
--- /dev/null
+++ b/test/integration/targets/include_import/test_grandparent_inheritance.yml
@@ -0,0 +1,29 @@
+---
+- hosts: testhost
+ gather_facts: false
+ tasks:
+ - debug:
+ var: inventory_hostname
+
+ - name: Test included tasks inherit from block
+ check_mode: true
+ block:
+ - include_tasks: grandchild/block_include_tasks.yml
+
+ - debug:
+ var: block_include_result
+
+ - assert:
+ that:
+ - block_include_result is skipped
+
+ - name: Test included tasks inherit deeply from import
+ import_tasks: grandchild/import.yml
+ check_mode: true
+
+ - debug:
+ var: import_include_include_result
+
+ - assert:
+ that:
+ - import_include_include_result is skipped