mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-23 13:20:23 -07:00
Adding further integration tests for include params with quotes
This commit is contained in:
parent
a9f0f8e975
commit
c9bfcf40d3
1 changed files with 9 additions and 1 deletions
|
@ -122,6 +122,14 @@
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- name: test includes with quoted params
|
- 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
|
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"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue