Commit c9bfcf40 by James Cammarata

Adding further integration tests for include params with quotes

parent a9f0f8e9
......@@ -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"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment