2007-03-01 21:11:08 +08:00
|
|
|
"""
|
|
|
|
Django Unit Test and Doctest framework.
|
|
|
|
"""
|
|
|
|
|
2010-10-13 07:37:47 +08:00
|
|
|
from django.test.client import Client, RequestFactory
|
2011-08-13 08:42:08 +08:00
|
|
|
from django.test.testcases import (TestCase, TransactionTestCase,
|
|
|
|
SimpleTestCase, skipIfDBFeature, skipUnlessDBFeature)
|
2010-08-20 22:28:42 +08:00
|
|
|
from django.test.utils import Approximate
|