123456789101112131415161718 |
- """
- Django Unit Test and Doctest framework.
- """
- from django.test.client import Client, RequestFactory
- from django.test.testcases import (
- TestCase, TransactionTestCase,
- SimpleTestCase, LiveServerTestCase, skipIfDBFeature,
- skipUnlessDBFeature
- )
- from django.test.utils import modify_settings, override_settings, override_system_checks
- __all__ = [
- 'Client', 'RequestFactory', 'TestCase', 'TransactionTestCase',
- 'SimpleTestCase', 'LiveServerTestCase', 'skipIfDBFeature',
- 'skipUnlessDBFeature', 'modify_settings', 'override_settings',
- 'override_system_checks'
- ]
|