diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2006-01-15 01:51:30 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2006-01-15 01:51:30 +0000 |
| commit | 0eaee6f5d4976f3b0146d512c43d2f9a19f39021 (patch) | |
| tree | 1b7dee9df4301fc1bc248115873ad6ac0a23b15c /tests | |
| parent | e260037e168152b17e4f46685ccce301fe3f5c99 (diff) | |
Fixed #1067 and #276 -- Added a {% spaceless %} tag, available in all templates
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1967 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/othertests/templates.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/othertests/templates.py b/tests/othertests/templates.py index f4f94e579d..5e3afd01e4 100644 --- a/tests/othertests/templates.py +++ b/tests/othertests/templates.py @@ -298,6 +298,11 @@ TEMPLATE_TESTS = { gentlemen. """), + # {% spaceless %} tag + 'spaceless01': ("{% spaceless %} <b> <i> text </i> </b> {% endspaceless %}", {}, "<b><i> text </i></b>"), + 'spaceless02': ("{% spaceless %} <b> \n <i> text </i> \n </b> {% endspaceless %}", {}, "<b><i> text </i></b>"), + 'spaceless03': ("{% spaceless %}<b><i>text</i></b>{% endspaceless %}", {}, "<b><i>text</i></b>"), + # simple translation of a string delimited by ' 'i18n01': ("{% load i18n %}{% trans 'xxxyyyxxx' %}", {}, "xxxyyyxxx"), |
