mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
New unit tests for #13630 fix
This commit is contained in:
parent
f2713f764c
commit
5fdac707fd
1 changed files with 3 additions and 0 deletions
|
@ -93,6 +93,9 @@ class TestSplitter_Gen:
|
||||||
(u'a=café b=eñyei',
|
(u'a=café b=eñyei',
|
||||||
[u'a=café', u'b=eñyei'],
|
[u'a=café', u'b=eñyei'],
|
||||||
{u'a': u'café', u'b': u'eñyei'}),
|
{u'a': u'café', u'b': u'eñyei'}),
|
||||||
|
(u'a={{ foo | some_filter(\' \', " ") }} b=bar',
|
||||||
|
[u'a={{ foo | some_filter(\' \', " ") }}', u'b=bar'],
|
||||||
|
{u'a': u'{{ foo | some_filter(\' \', " ") }}', u'b': u'bar'}),
|
||||||
)
|
)
|
||||||
|
|
||||||
def check_split_args(self, args, expected):
|
def check_split_args(self, args, expected):
|
||||||
|
|
Loading…
Reference in a new issue