mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Used assertRaisesMessage() to test Django's error messages.
This commit is contained in:
parent
38988f289f
commit
a51c4de194
69 changed files with 448 additions and 173 deletions
|
@ -273,7 +273,11 @@ class TemplateViewTest(SimpleTestCase):
|
|||
"""
|
||||
A template view must provide a template name.
|
||||
"""
|
||||
with self.assertRaises(ImproperlyConfigured):
|
||||
msg = (
|
||||
"TemplateResponseMixin requires either a definition of "
|
||||
"'template_name' or an implementation of 'get_template_names()'"
|
||||
)
|
||||
with self.assertRaisesMessage(ImproperlyConfigured, msg):
|
||||
self.client.get('/template/no_template/')
|
||||
|
||||
@require_jinja2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue