From 01f70349c9ef23d6751437dcd57d2efc193b2661 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Fri, 18 Nov 2011 07:09:18 +0000 Subject: [PATCH] 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 --- docs/topics/testing.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt index dc5bf7e7f53..181b4ffd519 100644 --- a/docs/topics/testing.txt +++ b/docs/topics/testing.txt @@ -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