From f814e4e4630c77d2e1854b646d45dfa40b691332 Mon Sep 17 00:00:00 2001 From: Michael DeHaan Date: Sat, 26 Jul 2014 10:41:23 -0400 Subject: [PATCH] Verify playbook includes can take params. --- test/integration/test_includes.yml | 2 +- test/integration/test_includes2.yml | 11 ++++++++++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/test/integration/test_includes.yml b/test/integration/test_includes.yml index 4061245ec13..5c191b427cc 100644 --- a/test/integration/test_includes.yml +++ b/test/integration/test_includes.yml @@ -1 +1 @@ -- include: test_includes2.yml +- include: test_includes2.yml parameter1=asdf parameter2=jkl diff --git a/test/integration/test_includes2.yml b/test/integration/test_includes2.yml index 4b538dcb188..9e8331ee180 100644 --- a/test/integration/test_includes2.yml +++ b/test/integration/test_includes2.yml @@ -1,5 +1,14 @@ -- hosts: testhost +- 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 }