mirror of https://github.com/django/django.git
Refs #33400 -- Renamed SimpleTestCase._assert_template_used() to _get_template_used().
This commit is contained in:
parent
f5233dce30
commit
e700a3714f
|
@ -625,7 +625,7 @@ class SimpleTestCase(unittest.TestCase):
|
||||||
if not found_formset:
|
if not found_formset:
|
||||||
self.fail(msg_prefix + "The formset '%s' was not used to render the response" % formset)
|
self.fail(msg_prefix + "The formset '%s' was not used to render the response" % formset)
|
||||||
|
|
||||||
def _assert_template_used(self, response, template_name, msg_prefix, method_name):
|
def _get_template_used(self, response, template_name, msg_prefix, method_name):
|
||||||
|
|
||||||
if response is None and template_name is None:
|
if response is None and template_name is None:
|
||||||
raise TypeError('response and/or template_name argument must be provided')
|
raise TypeError('response and/or template_name argument must be provided')
|
||||||
|
@ -651,7 +651,7 @@ class SimpleTestCase(unittest.TestCase):
|
||||||
Assert that the template with the provided name was used in rendering
|
Assert that the template with the provided name was used in rendering
|
||||||
the response. Also usable as context manager.
|
the response. Also usable as context manager.
|
||||||
"""
|
"""
|
||||||
context_mgr_template, template_names, msg_prefix = self._assert_template_used(
|
context_mgr_template, template_names, msg_prefix = self._get_template_used(
|
||||||
response, template_name, msg_prefix, 'assertTemplateUsed',
|
response, template_name, msg_prefix, 'assertTemplateUsed',
|
||||||
)
|
)
|
||||||
if context_mgr_template:
|
if context_mgr_template:
|
||||||
|
@ -680,7 +680,7 @@ class SimpleTestCase(unittest.TestCase):
|
||||||
Assert that the template with the provided name was NOT used in
|
Assert that the template with the provided name was NOT used in
|
||||||
rendering the response. Also usable as context manager.
|
rendering the response. Also usable as context manager.
|
||||||
"""
|
"""
|
||||||
context_mgr_template, template_names, msg_prefix = self._assert_template_used(
|
context_mgr_template, template_names, msg_prefix = self._get_template_used(
|
||||||
response, template_name, msg_prefix, 'assertTemplateNotUsed',
|
response, template_name, msg_prefix, 'assertTemplateNotUsed',
|
||||||
)
|
)
|
||||||
if context_mgr_template:
|
if context_mgr_template:
|
||||||
|
|
Loading…
Reference in New Issue