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