mirror of
https://github.com/Hopiu/django.git
synced 2026-04-06 08:01:07 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15062 bcc190cf-cafb-0310-a4f2-bffc1f526a37
26 lines
1 KiB
Python
26 lines
1 KiB
Python
from error_messages import *
|
|
from extra import *
|
|
from fields import FieldsTests
|
|
from forms import *
|
|
from formsets import *
|
|
from input_formats import *
|
|
from media import *
|
|
from models import *
|
|
from regressions import *
|
|
from util import *
|
|
from validators import TestFieldWithValidators
|
|
from widgets import *
|
|
|
|
from regressiontests.forms.localflavortests import (
|
|
ARLocalFlavorTests, ATLocalFlavorTests, AULocalFlavorTests,
|
|
BELocalFlavorTests, BRLocalFlavorTests, CALocalFlavorTests,
|
|
CHLocalFlavorTests, CLLocalFlavorTests, CZLocalFlavorTests,
|
|
DELocalFlavorTests, ESLocalFlavorTests, FILocalFlavorTests,
|
|
FRLocalFlavorTests, GenericLocalFlavorTests, IDLocalFlavorTests,
|
|
IELocalFlavorTests, ILLocalFlavorTests, ISLocalFlavorTests,
|
|
ITLocalFlavorTests, JPLocalFlavorTests, KWLocalFlavorTests,
|
|
NLLocalFlavorTests, PLLocalFlavorTests, PTLocalFlavorTests,
|
|
ROLocalFlavorTests, SELocalFlavorTests, SKLocalFlavorTests,
|
|
TRLocalFlavorTests, UKLocalFlavorTests, USLocalFlavorTests,
|
|
UYLocalFlavorTests, ZALocalFlavorTests
|
|
)
|