summaryrefslogtreecommitdiff
path: root/tests/regressiontests/templates/tests.py
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2009-03-23 09:40:25 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2009-03-23 09:40:25 +0000
commita6f429e37e7fe9cf8801c8fbce4c40af7e0cec0c (patch)
treebf9ef8eb5f7ccb98258d09391e996d89aab6532b /tests/regressiontests/templates/tests.py
parentf5c07f89e3f69672f94d1863e6559c78a40d1688 (diff)
Added consistent support for double- and single-quote delimiters in templates.
Some template filters and tags understood single-quoted arguments, others didn't. This makes everything consistent. Based on a patch from akaihola. Fixed #7295. git-svn-id: http://code.djangoproject.com/svn/django/trunk@10118 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/templates/tests.py')
-rw-r--r--tests/regressiontests/templates/tests.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/regressiontests/templates/tests.py b/tests/regressiontests/templates/tests.py
index a68f1e8f67..7bb37b9fd0 100644
--- a/tests/regressiontests/templates/tests.py
+++ b/tests/regressiontests/templates/tests.py
@@ -20,6 +20,7 @@ from django.utils.tzinfo import LocalTimezone
from unicode import unicode_tests
from context import context_tests
+from parser import filter_parsing, variable_parsing
try:
from loaders import *
@@ -31,7 +32,8 @@ import filters
# Some other tests we would like to run
__test__ = {
'unicode': unicode_tests,
- 'context': context_tests
+ 'context': context_tests,
+ 'filter_parsing': filter_parsing,
}
#################################