17 lines
493 B
Python
17 lines
493 B
Python
"""
|
|
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 override_settings
|
|
|
|
__all__ = [
|
|
'Client', 'RequestFactory', 'TestCase', 'TransactionTestCase',
|
|
'SimpleTestCase', 'LiveServerTestCase', 'skipIfDBFeature',
|
|
'skipUnlessDBFeature', 'override_settings',
|
|
]
|