summaryrefslogtreecommitdiff
path: root/tests/template_tests/syntax_tests/test_with.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/template_tests/syntax_tests/test_with.py')
-rw-r--r--tests/template_tests/syntax_tests/test_with.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/template_tests/syntax_tests/test_with.py b/tests/template_tests/syntax_tests/test_with.py
index ba1875af21..c1d501c94d 100644
--- a/tests/template_tests/syntax_tests/test_with.py
+++ b/tests/template_tests/syntax_tests/test_with.py
@@ -1,4 +1,5 @@
from django.template import TemplateSyntaxError
+from django.template.defaulttags import WithNode
from django.test import SimpleTestCase
from ..utils import setup
@@ -50,3 +51,9 @@ class WithTagTests(SimpleTestCase):
def test_with_error02(self):
with self.assertRaises(TemplateSyntaxError):
self.engine.render_to_string('with-error02', {'dict': {'key': 50}})
+
+
+class WithNodeTests(SimpleTestCase):
+ def test_repr(self):
+ node = WithNode(nodelist=[], name='a', var='dict.key')
+ self.assertEqual(repr(node), '<WithNode>')