Add some more integration tests for the task and playbook include mechanism.

This commit is contained in:
Michael DeHaan
2014-07-26 10:37:55 -04:00
parent 5bcb715dc0
commit a1e4f826ca
8 changed files with 120 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
- hosts: testhost
gather_facts: True
roles:
- { role: test_includes, tags: test_includes }
tasks:
- include: roles/test_includes/tasks/not_a_role_task.yml
- assert:
that:
- "ca == 33000"
- "cb == 33001"
- "cc == 33002"