Commit 01f70349 authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

Fixed #17248 -- Added a missing versionadded directive for TestCase.assertRaisesMessage.


git-svn-id: http://code.djangoproject.com/svn/django/trunk@17105 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 5e53f127
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -1512,6 +1512,8 @@ your test suite.

.. method:: TestCase.assertRaisesMessage(expected_exception, expected_message, callable_obj=None, *args, **kwargs)

    .. versionadded:: 1.4

    Asserts that execution of callable ``callable_obj`` raised the
    ``expected_exception`` exception and that such exception has an
    ``expected_message`` representation. Any other outcome is reported as a