From c9bfcf40d316f8322035e8444198e720832c3f63 Mon Sep 17 00:00:00 2001 From: James Cammarata Date: Tue, 29 Jul 2014 10:03:44 -0500 Subject: [PATCH] Adding further integration tests for include params with quotes --- .../integration/roles/test_good_parsing/tasks/main.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/test/integration/roles/test_good_parsing/tasks/main.yml b/test/integration/roles/test_good_parsing/tasks/main.yml index f19078bf1e..2017f13e96 100644 --- a/test/integration/roles/test_good_parsing/tasks/main.yml +++ b/test/integration/roles/test_good_parsing/tasks/main.yml @@ -122,6 +122,14 @@ register: result - name: test includes with quoted params - include: test_include.yml param="this is a param" + include: test_include.yml param="this is a param with double quotes" register: result +- name: test includes with single quoted params + include: test_include.yml param='this is a param with single quotes' + register: result + +- name: test includes with quoted params in complex args + include: test_include.yml + vars: + param: "this is a param in a complex arg with double quotes"