mirror of
https://github.com/davidhalter/django-stubs.git
synced 2026-01-09 04:52:23 +08:00
21 lines
671 B
Python
21 lines
671 B
Python
from .testcases import (
|
|
TestCase as TestCase,
|
|
TransactionTestCase as TransactionTestCase,
|
|
SimpleTestCase as SimpleTestCase,
|
|
LiveServerTestCase as LiveServerTestCase,
|
|
skipIfDBFeature as skipIfDBFeature,
|
|
skipUnlessDBFeature as skipUnlessDBFeature,
|
|
skipUnlessAnyDBFeature as skipUnlessAnyDBFeature,
|
|
)
|
|
|
|
from .utils import (
|
|
override_settings as override_settings,
|
|
modify_settings as modify_settings,
|
|
override_script_prefix as override_script_prefix,
|
|
override_system_checks as override_system_checks,
|
|
ignore_warnings as ignore_warnings,
|
|
tag as tag,
|
|
)
|
|
|
|
from .client import Client as Client, RequestFactory as RequestFactory
|