blob: 21a4841a6bce52a59a2593fdcb6a69c6d81fa602 (
plain)
1
2
3
4
5
6
7
8
9
|
"""
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 Approximate
|