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
This commit is contained in:
Aymeric Augustin 2011-11-18 07:09:18 +00:00
parent 5e53f12761
commit 01f70349c9
1 changed files with 2 additions and 0 deletions

View File

@ -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