summaryrefslogtreecommitdiff
path: root/lib/python2.7/site-packages/django/test/__init__.py
blob: 7a4987508e6833030d13b1505a2f25767e7fcd9e (plain)
1
2
3
4
5
6
7
8
9
10
"""
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