datatracker/django/test/__init__.py
2013-12-11 13:59:17 +00:00

11 lines
294 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 Approximate