summaryrefslogtreecommitdiff
path: root/tests/forms/tests/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/forms/tests/__init__.py')
-rw-r--r--tests/forms/tests/__init__.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/forms/tests/__init__.py b/tests/forms/tests/__init__.py
new file mode 100644
index 0000000000..6708e54c79
--- /dev/null
+++ b/tests/forms/tests/__init__.py
@@ -0,0 +1,21 @@
+from __future__ import absolute_import
+
+from .error_messages import (FormsErrorMessagesTestCase,
+ ModelChoiceFieldErrorMessagesTestCase)
+from .extra import FormsExtraTestCase, FormsExtraL10NTestCase
+from .fields import FieldsTests
+from .forms import FormsTestCase
+from .formsets import (FormsFormsetTestCase, FormsetAsFooTests,
+ TestIsBoundBehavior, TestEmptyFormSet)
+from .input_formats import (LocalizedTimeTests, CustomTimeInputFormatsTests,
+ SimpleTimeFormatTests, LocalizedDateTests, CustomDateInputFormatsTests,
+ SimpleDateFormatTests, LocalizedDateTimeTests,
+ CustomDateTimeInputFormatsTests, SimpleDateTimeFormatTests)
+from .media import FormsMediaTestCase, StaticFormsMediaTestCase
+from .models import (TestTicket12510, ModelFormCallableModelDefault,
+ FormsModelTestCase, RelatedModelFormTests)
+from .regressions import FormsRegressionsTestCase
+from .util import FormsUtilTestCase
+from .validators import TestFieldWithValidators
+from .widgets import (FormsWidgetTestCase, FormsI18NWidgetsTestCase,
+ WidgetTests, LiveWidgetTests, ClearableFileInputTests)