1
0
mirror of https://github.com/django/django.git synced 2025-04-04 21:46:40 +00:00

[1.8.x] Clarified assertRaisesMessage() behavior with respect to the message.

Backport of 6bb4f07372fe748a701ad38e5c0d1182dab9e2c8 from master
This commit is contained in:
Tim Graham 2015-07-30 18:28:26 -04:00
parent 386a6dc3d7
commit f5f03e3de9

View File

@ -1337,7 +1337,7 @@ your test suite.
SimpleTestCase.assertRaisesMessage(expected_exception, expected_message)
Asserts that execution of ``callable`` raises ``expected_exception`` and
that the exception has an ``expected_message`` representation. Any other
that ``expected_message`` is found in the exception's message. Any other
outcome is reported as a failure. Similar to unittest's
:meth:`~unittest.TestCase.assertRaisesRegex` with the difference that
``expected_message`` isn't a regular expression.