__init__.py 767 B

123456789101112131415161718192021
  1. """Django Unit Test framework."""
  2. from django.test.client import (
  3. AsyncClient, AsyncRequestFactory, Client, RequestFactory,
  4. )
  5. from django.test.testcases import (
  6. LiveServerTestCase, SimpleTestCase, TestCase, TransactionTestCase,
  7. skipIfDBFeature, skipUnlessAnyDBFeature, skipUnlessDBFeature,
  8. )
  9. from django.test.utils import (
  10. ignore_warnings, modify_settings, override_settings,
  11. override_system_checks, tag,
  12. )
  13. __all__ = [
  14. 'AsyncClient', 'AsyncRequestFactory', 'Client', 'RequestFactory',
  15. 'TestCase', 'TransactionTestCase', 'SimpleTestCase', 'LiveServerTestCase',
  16. 'skipIfDBFeature', 'skipUnlessAnyDBFeature', 'skipUnlessDBFeature',
  17. 'ignore_warnings', 'modify_settings', 'override_settings',
  18. 'override_system_checks', 'tag',
  19. ]