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,
|
Fixed #2879 -- Added support for the integration with Selenium and other in-browser testing frameworks. Also added the first Selenium tests for `contrib.admin`. Many thanks to everyone for their contributions and feedback: Mikeal Rogers, Dirk Datzert, mir, Simon G., Almad, Russell Keith-Magee, Denis Golomazov, devin, robertrv, andrewbadr, Idan Gazit, voidspace, Tom Christie, hjwp2, Adam Nelson, Jannis Leidel, Anssi Kääriäinen, Preston Holmes, Bruno Renié and Jacob Kaplan-Moss.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17241 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-12-22 16:33:58 +08:00
|
|
|
SimpleTestCase, LiveServerTestCase, skipIfDBFeature,
|
|
|
|
skipUnlessDBFeature)
|
2010-08-20 22:28:42 +08:00
|
|
|
from django.test.utils import Approximate
|