summaryrefslogtreecommitdiff
path: root/tests/template_tests/syntax_tests/test_include.py
diff options
context:
space:
mode:
authorsaeedblanchette <saiidblanchettel@outlook.com>2021-06-08 17:00:00 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-06-10 12:47:53 +0200
commit66ed03e7c9ae4cd754aa918c6f4c9227cf424141 (patch)
treec8df099f407702b7552d7421a8b2defdbbe01138 /tests/template_tests/syntax_tests/test_include.py
parentcb6c19749d342c3dc0f97d89ff6887b220cf45b8 (diff)
Refs #24121 -- Added __repr__() to AdminForm, BlockContext, BlockTranslateNode, and IncludeNode.
Diffstat (limited to 'tests/template_tests/syntax_tests/test_include.py')
-rw-r--r--tests/template_tests/syntax_tests/test_include.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/template_tests/syntax_tests/test_include.py b/tests/template_tests/syntax_tests/test_include.py
index f1fee7d227..6dac87b7f2 100644
--- a/tests/template_tests/syntax_tests/test_include.py
+++ b/tests/template_tests/syntax_tests/test_include.py
@@ -1,6 +1,7 @@
from django.template import (
Context, Engine, TemplateDoesNotExist, TemplateSyntaxError, loader,
)
+from django.template.loader_tags import IncludeNode
from django.test import SimpleTestCase
from ..utils import setup
@@ -314,3 +315,12 @@ class IncludeTests(SimpleTestCase):
], libraries={'custom': 'template_tests.templatetags.custom'})
output = engine.render_to_string('template', {'vars': range(9)})
self.assertEqual(output, '012345678')
+
+
+class IncludeNodeTests(SimpleTestCase):
+ def test_repr(self):
+ include_node = IncludeNode('app/template.html')
+ self.assertEqual(
+ repr(include_node),
+ "<IncludeNode: template='app/template.html'>",
+ )