1
0
mirror of https://github.com/django/django.git synced 2025-10-24 14:16:09 +00:00

Fixed #4746 -- Allowed spaces around filter separator.

This commit is contained in:
Aymeric Augustin
2012-04-30 21:01:06 +02:00
parent 78ba9670af
commit ddfc7c2530
2 changed files with 5 additions and 5 deletions

View File

@@ -634,11 +634,11 @@ class Templates(unittest.TestCase):
# Chained filters
'filter-syntax02': ("{{ var|upper|lower }}", {"var": "Django is the greatest!"}, "django is the greatest!"),
# Raise TemplateSyntaxError for space between a variable and filter pipe
'filter-syntax03': ("{{ var |upper }}", {}, template.TemplateSyntaxError),
# Allow spaces before the filter pipe
'filter-syntax03': ("{{ var |upper }}", {"var": "Django is the greatest!"}, "DJANGO IS THE GREATEST!"),
# Raise TemplateSyntaxError for space after a filter pipe
'filter-syntax04': ("{{ var| upper }}", {}, template.TemplateSyntaxError),
# Allow spaces after the filter pipe
'filter-syntax04': ("{{ var| upper }}", {"var": "Django is the greatest!"}, "DJANGO IS THE GREATEST!"),
# Raise TemplateSyntaxError for a nonexistent filter
'filter-syntax05': ("{{ var|does_not_exist }}", {}, template.TemplateSyntaxError),