blob: a3a03e3e5d11a37c57e0e6680302a93e00389ab4 (
plain)
1
2
3
4
5
6
7
8
|
"""
Django Unit Test and Doctest framework.
"""
from django.test.client import Client, RequestFactory
from django.test.testcases import (TestCase, TransactionTestCase,
SimpleTestCase, skipIfDBFeature, skipUnlessDBFeature)
from django.test.utils import Approximate
|