mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +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
|
@ -222,7 +222,7 @@ class UtilsTests(SimpleTestCase):
|
|||
"article"
|
||||
)
|
||||
|
||||
with self.assertRaises(AttributeError):
|
||||
with self.assertRaisesMessage(AttributeError, "Unable to lookup 'unknown' on Article"):
|
||||
label_for_field("unknown", Article)
|
||||
|
||||
def test_callable(obj):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue