summaryrefslogtreecommitdiff
path: root/docs/topics/testing
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/testing')
-rw-r--r--docs/topics/testing/advanced.txt8
-rw-r--r--docs/topics/testing/tools.txt7
2 files changed, 0 insertions, 15 deletions
diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt
index 54fed92168..1fa3423139 100644
--- a/docs/topics/testing/advanced.txt
+++ b/docs/topics/testing/advanced.txt
@@ -573,10 +573,6 @@ execute and tear down the test suite.
custom arguments by calling ``parser.add_argument()`` inside the method, so
that the :djadmin:`test` command will be able to use those arguments.
- .. versionadded:: 3.1
-
- The ``buffer`` argument was added.
-
.. versionadded:: 3.2
The ``enable_faulthandler`` and ``timing`` arguments were added.
@@ -671,10 +667,6 @@ Methods
Runs the :doc:`system checks </topics/checks>` on the test ``databases``.
- .. versionadded:: 3.1
-
- The ``databases`` parameter was added.
-
.. method:: DiscoverRunner.run_suite(suite, **kwargs)
Runs the test suite.
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index 678eb260aa..82f287fe71 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -769,11 +769,6 @@ If your tests make any database queries, use subclasses
:exc:`unittest.SkipTest` in ``setUpClass()``, be sure to do it before
calling ``super()`` to avoid this.
-.. versionchanged:: 3.1
-
- The ``debug()`` method was implemented to allow running a test without
- collecting the result and catching exceptions.
-
``TransactionTestCase``
-----------------------
@@ -1806,8 +1801,6 @@ won't be run.
Testing asynchronous code
=========================
-.. versionadded:: 3.1
-
If you merely want to test the output of your asynchronous views, the standard
test client will run them inside their own asynchronous loop without any extra
work needed on your part.