summaryrefslogtreecommitdiff
path: root/tests/test_utils
diff options
context:
space:
mode:
authorArian <arian.kulmer@web.de>2023-09-09 01:28:36 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-09-22 10:51:10 +0200
commit51d703a27fee518491adee1e07e2b857a90b2c8d (patch)
tree668dc305027b0e119cb33b55ff4254b4a411ac9a /tests/test_utils
parent4de31ec680df062e5964b630f1b881ead5004e15 (diff)
Fixed #34823 -- Fixed assertTemplateUsed() context manager crash on unnamed templates.
Diffstat (limited to 'tests/test_utils')
-rw-r--r--tests/test_utils/tests.py15
1 files changed, 12 insertions, 3 deletions
diff --git a/tests/test_utils/tests.py b/tests/test_utils/tests.py
index f05b1f1e71..8b07d631fb 100644
--- a/tests/test_utils/tests.py
+++ b/tests/test_utils/tests.py
@@ -26,6 +26,7 @@ from django.forms import (
formset_factory,
)
from django.http import HttpResponse
+from django.template import Context, Template
from django.template.loader import render_to_string
from django.test import (
SimpleTestCase,
@@ -530,12 +531,20 @@ class AssertTemplateUsedContextManagerTests(SimpleTestCase):
with self.assertTemplateUsed("template_used/base.html"):
render_to_string("template_used/alternative.html")
- with self.assertRaisesMessage(
- AssertionError, "No templates used to render the response"
- ):
+ msg = "No templates used to render the response"
+ with self.assertRaisesMessage(AssertionError, msg):
response = self.client.get("/test_utils/no_template_used/")
self.assertTemplateUsed(response, "template_used/base.html")
+ with self.assertRaisesMessage(AssertionError, msg):
+ with self.assertTemplateUsed("template_used/base.html"):
+ self.client.get("/test_utils/no_template_used/")
+
+ with self.assertRaisesMessage(AssertionError, msg):
+ with self.assertTemplateUsed("template_used/base.html"):
+ template = Template("template_used/alternative.html", name=None)
+ template.render(Context())
+
def test_msg_prefix(self):
msg_prefix = "Prefix"
msg = f"{msg_prefix}: No templates used to render the response"