From 5a48cb5f61b2670b53f378bb704fa819f7e38111 Mon Sep 17 00:00:00 2001 From: Ramiro Morales Date: Mon, 19 Dec 2011 11:53:16 +0000 Subject: [PATCH] Added note about assertFieldOutput being new in 1.4. Thanks dpifke for report and patch. Fixes #17433 git-svn-id: http://code.djangoproject.com/svn/django/trunk@17230 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 23963657d6b..d6f54ad691b 100644 --- a/docs/topics/testing.txt +++ b/docs/topics/testing.txt @@ -1523,6 +1523,8 @@ your test suite. .. method:: assertFieldOutput(self, fieldclass, valid, invalid, field_args=None, field_kwargs=None, empty_value=u'') + .. versionadded:: 1.4 + Asserts that a form field behaves correctly with various inputs. :param fieldclass: the class of the field to be tested.