diff options
| author | Gary Wilson Jr <gary.wilson@gmail.com> | 2007-09-14 02:01:11 +0000 |
|---|---|---|
| committer | Gary Wilson Jr <gary.wilson@gmail.com> | 2007-09-14 02:01:11 +0000 |
| commit | 0b1f4e3c7beb6f205515f11f443aa8ae99e07656 (patch) | |
| tree | b7c37e86db92c4b1a1a523c289da04d288fa20f6 /tests/regressiontests/forms/tests.py | |
| parent | d14c756b5e30c73fcb973905b67f091169d33595 (diff) | |
Refs #5370 -- Added tests for ValidationError messages.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6150 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests/regressiontests/forms/tests.py')
| -rw-r--r-- | tests/regressiontests/forms/tests.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/regressiontests/forms/tests.py b/tests/regressiontests/forms/tests.py index 2477eb1cef..1f865513c8 100644 --- a/tests/regressiontests/forms/tests.py +++ b/tests/regressiontests/forms/tests.py @@ -1,6 +1,7 @@ # -*- coding: utf-8 -*- from localflavor import localflavor_tests from regressions import regression_tests +from util import util_tests form_tests = r""" >>> from django.newforms import * @@ -3852,6 +3853,7 @@ __test__ = { 'form_tests': form_tests, 'localflavor': localflavor_tests, 'regressions': regression_tests, + 'util_tests': util_tests, } if __name__ == "__main__": |
