1
0
mirror of https://github.com/django/django.git synced 2024-12-24 01:55:49 +00:00
django/tests/forms_tests/tests/__init__.py
Claude Paroz 5c1143910e Removed most of absolute_import imports
Should be unneeded with Python 2.7 and up.
Added some unicode_literals along the way.
2013-07-29 20:28:13 +02:00

20 lines
1.1 KiB
Python

from .test_error_messages import (FormsErrorMessagesTestCase,
ModelChoiceFieldErrorMessagesTestCase)
from .test_extra import FormsExtraTestCase, FormsExtraL10NTestCase
from .test_fields import FieldsTests
from .test_forms import FormsTestCase
from .test_formsets import (FormsFormsetTestCase, FormsetAsFooTests,
TestIsBoundBehavior, TestEmptyFormSet)
from .test_input_formats import (LocalizedTimeTests, CustomTimeInputFormatsTests,
SimpleTimeFormatTests, LocalizedDateTests, CustomDateInputFormatsTests,
SimpleDateFormatTests, LocalizedDateTimeTests,
CustomDateTimeInputFormatsTests, SimpleDateTimeFormatTests)
from .test_media import FormsMediaTestCase, StaticFormsMediaTestCase
from .tests import (TestTicket12510, TestTicket14567, ModelFormCallableModelDefault,
FormsModelTestCase, RelatedModelFormTests)
from .test_regressions import FormsRegressionsTestCase
from .test_util import FormsUtilTestCase
from .test_validators import TestFieldWithValidators
from .test_widgets import (FormsWidgetTestCase, FormsI18NWidgetsTestCase,
WidgetTests, LiveWidgetTests, ClearableFileInputTests)