diff --git a/test/units/parsing/test_splitter.py b/test/units/parsing/test_splitter.py index 1f648c8f6a8..979a5859795 100644 --- a/test/units/parsing/test_splitter.py +++ b/test/units/parsing/test_splitter.py @@ -93,6 +93,9 @@ class TestSplitter_Gen: (u'a=café b=eñyei', [u'a=café', u'b=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):