mirror of
https://github.com/django/django.git
synced 2024-12-26 02:56:25 +00:00
eec45e8b71
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14191 bcc190cf-cafb-0310-a4f2-bffc1f526a37
8 lines
247 B
Python
8 lines
247 B
Python
"""
|
|
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
|