Tweaked docstrings from previous commit.

This commit is contained in:
Tim Graham 2014-08-22 15:57:15 -04:00
parent a6691e5dcf
commit f9c7732e96
1 changed files with 3 additions and 2 deletions

View File

@ -2341,7 +2341,8 @@ class FormsTestCase(TestCase):
def test_baseform_repr(self): def test_baseform_repr(self):
""" """
Test for baseForm method __repr__ BaseForm.__repr__() should contain some basic information about the
form.
""" """
p = Person() p = Person()
self.assertEqual(repr(p), "<Person bound=False, valid=Unknown, fields=(first_name;last_name;birthday)>") self.assertEqual(repr(p), "<Person bound=False, valid=Unknown, fields=(first_name;last_name;birthday)>")
@ -2355,7 +2356,7 @@ class FormsTestCase(TestCase):
def test_baseform_repr_dont_trigger_validation(self): def test_baseform_repr_dont_trigger_validation(self):
""" """
Test to verify that __repr__ method don't trigger the validation BaseForm.__repr__() shouldn't trigger the form validation.
""" """
p = Person({'first_name': 'John', 'last_name': 'Lennon', 'birthday': 'fakedate'}) p = Person({'first_name': 'John', 'last_name': 'Lennon', 'birthday': 'fakedate'})
repr(p) repr(p)