Loading tests/forms_tests/tests/__init__.py +11 −11 Original line number Diff line number Diff line from __future__ import absolute_import from .error_messages import (FormsErrorMessagesTestCase, from .test_error_messages import (FormsErrorMessagesTestCase, ModelChoiceFieldErrorMessagesTestCase) from .extra import FormsExtraTestCase, FormsExtraL10NTestCase from .fields import FieldsTests from .forms import FormsTestCase from .formsets import (FormsFormsetTestCase, FormsetAsFooTests, 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 .input_formats import (LocalizedTimeTests, CustomTimeInputFormatsTests, from .test_input_formats import (LocalizedTimeTests, CustomTimeInputFormatsTests, SimpleTimeFormatTests, LocalizedDateTests, CustomDateInputFormatsTests, SimpleDateFormatTests, LocalizedDateTimeTests, CustomDateTimeInputFormatsTests, SimpleDateTimeFormatTests) from .media import FormsMediaTestCase, StaticFormsMediaTestCase from .test_media import FormsMediaTestCase, StaticFormsMediaTestCase from .tests import (TestTicket12510, ModelFormCallableModelDefault, FormsModelTestCase, RelatedModelFormTests) from .regressions import FormsRegressionsTestCase from .util import FormsUtilTestCase from .validators import TestFieldWithValidators from .widgets import (FormsWidgetTestCase, FormsI18NWidgetsTestCase, from .test_regressions import FormsRegressionsTestCase from .test_util import FormsUtilTestCase from .test_validators import TestFieldWithValidators from .test_widgets import (FormsWidgetTestCase, FormsI18NWidgetsTestCase, WidgetTests, LiveWidgetTests, ClearableFileInputTests) tests/forms_tests/tests/models.pydeleted 100644 → 0 +0 −0 Empty file deleted. tests/forms_tests/tests/error_messages.py→tests/forms_tests/tests/test_error_messages.py +0 −0 File moved. View file tests/forms_tests/tests/extra.py→tests/forms_tests/tests/test_extra.py +1 −1 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ from django.utils import six from django.utils import translation from django.utils.encoding import force_text, smart_text, python_2_unicode_compatible from .error_messages import AssertFormErrorsMixin from .test_error_messages import AssertFormErrorsMixin class GetDate(Form): Loading tests/forms_tests/tests/fields.py→tests/forms_tests/tests/test_fields.py +0 −0 File moved. View file Loading
tests/forms_tests/tests/__init__.py +11 −11 Original line number Diff line number Diff line from __future__ import absolute_import from .error_messages import (FormsErrorMessagesTestCase, from .test_error_messages import (FormsErrorMessagesTestCase, ModelChoiceFieldErrorMessagesTestCase) from .extra import FormsExtraTestCase, FormsExtraL10NTestCase from .fields import FieldsTests from .forms import FormsTestCase from .formsets import (FormsFormsetTestCase, FormsetAsFooTests, 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 .input_formats import (LocalizedTimeTests, CustomTimeInputFormatsTests, from .test_input_formats import (LocalizedTimeTests, CustomTimeInputFormatsTests, SimpleTimeFormatTests, LocalizedDateTests, CustomDateInputFormatsTests, SimpleDateFormatTests, LocalizedDateTimeTests, CustomDateTimeInputFormatsTests, SimpleDateTimeFormatTests) from .media import FormsMediaTestCase, StaticFormsMediaTestCase from .test_media import FormsMediaTestCase, StaticFormsMediaTestCase from .tests import (TestTicket12510, ModelFormCallableModelDefault, FormsModelTestCase, RelatedModelFormTests) from .regressions import FormsRegressionsTestCase from .util import FormsUtilTestCase from .validators import TestFieldWithValidators from .widgets import (FormsWidgetTestCase, FormsI18NWidgetsTestCase, from .test_regressions import FormsRegressionsTestCase from .test_util import FormsUtilTestCase from .test_validators import TestFieldWithValidators from .test_widgets import (FormsWidgetTestCase, FormsI18NWidgetsTestCase, WidgetTests, LiveWidgetTests, ClearableFileInputTests)
tests/forms_tests/tests/error_messages.py→tests/forms_tests/tests/test_error_messages.py +0 −0 File moved. View file
tests/forms_tests/tests/extra.py→tests/forms_tests/tests/test_extra.py +1 −1 Original line number Diff line number Diff line Loading @@ -12,7 +12,7 @@ from django.utils import six from django.utils import translation from django.utils.encoding import force_text, smart_text, python_2_unicode_compatible from .error_messages import AssertFormErrorsMixin from .test_error_messages import AssertFormErrorsMixin class GetDate(Form): Loading