mirror of
https://github.com/Hopiu/django.git
synced 2026-04-07 08:31:02 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16385 bcc190cf-cafb-0310-a4f2-bffc1f526a37
52 lines
1.2 KiB
Python
52 lines
1.2 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,
|
|
CNLocalFlavorTests,
|
|
CZLocalFlavorTests,
|
|
DELocalFlavorTests,
|
|
ESLocalFlavorTests,
|
|
FILocalFlavorTests,
|
|
FRLocalFlavorTests,
|
|
GBLocalFlavorTests,
|
|
GenericLocalFlavorTests,
|
|
HRLocalFlavorTests,
|
|
IDLocalFlavorTests,
|
|
IELocalFlavorTests,
|
|
ILLocalFlavorTests,
|
|
ISLocalFlavorTests,
|
|
ITLocalFlavorTests,
|
|
JPLocalFlavorTests,
|
|
KWLocalFlavorTests,
|
|
MKLocalFlavorTests,
|
|
NLLocalFlavorTests,
|
|
PLLocalFlavorTests,
|
|
PTLocalFlavorTests,
|
|
ROLocalFlavorTests,
|
|
RULocalFlavorTests,
|
|
SELocalFlavorTests,
|
|
SKLocalFlavorTests,
|
|
TRLocalFlavorTests,
|
|
USLocalFlavorTests,
|
|
UYLocalFlavorTests,
|
|
ZALocalFlavorTests,
|
|
AssertFieldOutputTests,
|
|
)
|