diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index dc5bf7e..3a95998 100644
a
|
b
|
Assertions
|
1498 | 1498 | .. versionchanged:: 1.2 |
1499 | 1499 | Addded ``msg_prefix`` argument. |
1500 | 1500 | |
| 1501 | .. versionchanged:: 1.4 |
| 1502 | Added ``assertRaisesMessage``. |
| 1503 | |
1501 | 1504 | As Python's normal :class:`unittest.TestCase` class implements assertion methods |
1502 | 1505 | such as :meth:`~unittest.TestCase.assertTrue` and |
1503 | 1506 | :meth:`~unittest.TestCase.assertEqual`, Django's custom :class:`TestCase` class |
… |
… |
your test suite.
|
1512 | 1515 | |
1513 | 1516 | .. method:: TestCase.assertRaisesMessage(expected_exception, expected_message, callable_obj=None, *args, **kwargs) |
1514 | 1517 | |
| 1518 | .. versionadded:: 1.4 |
| 1519 | |
1515 | 1520 | Asserts that execution of callable ``callable_obj`` raised the |
1516 | 1521 | ``expected_exception`` exception and that such exception has an |
1517 | 1522 | ``expected_message`` representation. Any other outcome is reported as a |