summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/includes/test_includes2.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/includes/test_includes2.yml')
-rw-r--r--test/integration/targets/includes/test_includes2.yml22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/integration/targets/includes/test_includes2.yml b/test/integration/targets/includes/test_includes2.yml
new file mode 100644
index 0000000..a32e851
--- /dev/null
+++ b/test/integration/targets/includes/test_includes2.yml
@@ -0,0 +1,22 @@
+- name: verify playbook includes can take parameters
+ hosts: testhost
+ tasks:
+ - assert:
+ that:
+ - "parameter1 == 'asdf'"
+ - "parameter2 == 'jkl'"
+
+- name: verify task include logic
+ hosts: testhost
+ gather_facts: True
+ roles:
+ - role: test_includes
+ tags: test_includes
+ tasks:
+ - include: roles/test_includes/tasks/not_a_role_task.yml
+ - include: roles/test_includes/tasks/empty.yml
+ - assert:
+ that:
+ - "ca == 33000"
+ - "cb == 33001"
+ - "cc == 33002"