Commit cdf520ee authored by Preston Timmons's avatar Preston Timmons Committed by Carl Meyer
Browse files

Modified forms_tests to work with unittest2 discovery.

parent d58e985a
Loading
Loading
Loading
Loading
+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.py

deleted100644 → 0
+0 −0

Empty file deleted.

+1 −1
Original line number Diff line number Diff line
@@ -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