diff options
| author | Brian Rosner <brosner@gmail.com> | 2009-12-13 22:00:26 +0000 |
|---|---|---|
| committer | Brian Rosner <brosner@gmail.com> | 2009-12-13 22:00:26 +0000 |
| commit | bd123104272606465dd0391f0c3650388b0fb45c (patch) | |
| tree | 6d9d8a0c90e57631fe2ca34ebcbfb42cb2b42c1f /tests/regressiontests/forms/tests.py | |
| parent | 2135befd64ce6c5c1ba765337e078a6cce7ae0f2 (diff) | |
Converted regressiontests/forms/fields.py to unittests
This makes merging in the soc2009/model-validation simpler and rids us a
little bit more of awful doctests. Thanks Honza!
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11858 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/forms/tests.py')
| -rw-r--r-- | tests/regressiontests/forms/tests.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/regressiontests/forms/tests.py b/tests/regressiontests/forms/tests.py index 6d418fa5a3..6f00a06fdd 100644 --- a/tests/regressiontests/forms/tests.py +++ b/tests/regressiontests/forms/tests.py @@ -1,6 +1,5 @@ # -*- coding: utf-8 -*- from extra import tests as extra_tests -from fields import tests as fields_tests from forms import tests as form_tests from error_messages import tests as custom_error_message_tests from localflavor.ar import tests as localflavor_ar_tests @@ -32,9 +31,10 @@ from widgets import tests as widgets_tests from formsets import tests as formset_tests from media import media_tests +from fields import FieldsTests + __test__ = { 'extra_tests': extra_tests, - 'fields_tests': fields_tests, 'form_tests': form_tests, 'custom_error_message_tests': custom_error_message_tests, 'localflavor_ar_tests': localflavor_ar_tests, |
