summaryrefslogtreecommitdiff
path: root/docs/topics/testing.txt
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-11-15 05:51:25 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2008-11-15 05:51:25 +0000
commit644ad9073f1e488fa0cc8dd9fa6d59c6bd504da9 (patch)
tree0f9eed3b18aa9cf08fde728fafeb0914c51d1f67 /docs/topics/testing.txt
parent06f89325e152f1d7084f6d200d6879ffa940fd44 (diff)
Fixed #9477 -- Removed and edited a bunch of references to "development
version". Some were replaced with versionadded or versionchanged directives. Other, more minor ones, were removed altogether. Based on a patch from James Bennett. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9454 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/testing.txt')
-rw-r--r--docs/topics/testing.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index 304ed48f3b..23ac2481e7 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -186,12 +186,12 @@ test utility is to find all the test cases (that is, subclasses of
``unittest.TestCase``) in ``models.py`` and ``tests.py``, automatically build a
test suite out of those test cases, and run that suite.
-In the Django development version, there is a second way to define the test
-suite for a module: if you define a function called ``suite()`` in either
-``models.py`` or ``tests.py``, the Django test runner will use that function
-to construct the test suite for that module. This follows the `suggested
-organization`_ for unit tests. See the Python documentation for more details on
-how to construct a complex test suite.
+There is a second way to define the test suite for a module: if you define a
+function called ``suite()`` in either ``models.py`` or ``tests.py``, the
+Django test runner will use that function to construct the test suite for that
+module. This follows the `suggested organization`_ for unit tests. See the
+Python documentation for more details on how to construct a complex test
+suite.
For more details about ``unittest``, see the `standard library unittest
documentation`_.