mirror of
https://github.com/django/django.git
synced 2025-06-30 07:49:19 +00:00
Replaced them with a new assertRaisesMessage method of a new SimpleTestCase, a lightweight subclass of unittest.TestCase. Both are also available for usage in user tests. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16610 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
273 B
Python
9 lines
273 B
Python
"""
|
|
Django Unit Test and Doctest framework.
|
|
"""
|
|
|
|
from django.test.client import Client, RequestFactory
|
|
from django.test.testcases import (TestCase, TransactionTestCase,
|
|
SimpleTestCase, skipIfDBFeature, skipUnlessDBFeature)
|
|
from django.test.utils import Approximate
|