Clarified assertRaisesMessage() behavior with respect to the message.
This commit is contained in:
parent
1c7c782d6e
commit
6bb4f07372
|
@ -1352,7 +1352,7 @@ your test suite.
|
||||||
SimpleTestCase.assertRaisesMessage(expected_exception, expected_message)
|
SimpleTestCase.assertRaisesMessage(expected_exception, expected_message)
|
||||||
|
|
||||||
Asserts that execution of ``callable`` raises ``expected_exception`` and
|
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
|
outcome is reported as a failure. Similar to unittest's
|
||||||
:meth:`~unittest.TestCase.assertRaisesRegex` with the difference that
|
:meth:`~unittest.TestCase.assertRaisesRegex` with the difference that
|
||||||
``expected_message`` isn't a regular expression.
|
``expected_message`` isn't a regular expression.
|
||||||
|
|
Loading…
Reference in New Issue