diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2007-03-01 13:11:08 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2007-03-01 13:11:08 +0000 |
| commit | f2582eb972303978a5fa115825a646a230624116 (patch) | |
| tree | 3f0869ae0cf47590feef9ef12ed37a3fa9d03efd /django/test/__init__.py | |
| parent | f54777406d9b0a1643db49baa20367e27bef4b2e (diff) | |
Fixes #2333 -- Added test fixtures framework.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4659 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/test/__init__.py')
| -rw-r--r-- | django/test/__init__.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/django/test/__init__.py b/django/test/__init__.py index e69de29bb2..554e72bad3 100644 --- a/django/test/__init__.py +++ b/django/test/__init__.py @@ -0,0 +1,6 @@ +""" +Django Unit Test and Doctest framework. +""" + +from django.test.client import Client +from django.test.testcases import TestCase |
