add test for allowing whitespace between tokens

This commit is contained in:
Peter Schröder
2013-06-13 18:21:49 -04:00
parent a2df5a421d
commit cb12497859

View File

@@ -287,4 +287,11 @@ HERE
Liquid::Template.parse('{% for a/b in x %}{% endfor %}')
end
end
def test_spacing_with_variable_naming_in_for_loop
expected = '12345'
template = '{% for item in items %}{{item}}{% endfor %}'
assigns = {'items' => [1,2,3,4,5]}
assert_template_result(expected, template, assigns)
end
end