Adding further integration tests for include params with quotes

This commit is contained in:
James Cammarata 2014-07-29 10:03:44 -05:00
parent a9f0f8e975
commit c9bfcf40d3

View file

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