ansible/test/integration/targets/includes/test_includes2.yml
Adrien Vergé 0e834fc9e4 Fix cosmetic problems in YAML source
This change corrects problems reported by the `yamllint` linter.

Since key duplication problems were removed in 4d48711, this commit
mainly fixes trailing spaces and extra empty lines at beginning/end of
files.
2016-11-11 14:50:57 -08:00

21 lines
538 B
YAML

- 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"