summaryrefslogtreecommitdiff
path: root/docs/topics/testing/advanced.txt
diff options
context:
space:
mode:
authorfaishalmanzar <faishalmanzar@gmail.com>2023-09-29 03:26:10 +0530
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2023-10-02 09:12:08 +0200
commitf4e72e6523e6968d9628dfbff914ab57dbf19e6b (patch)
treeffe9051cf778c89de02b1c4892cadd6c3f6c4ee4 /docs/topics/testing/advanced.txt
parente99c7d8847e9006f877ab3cea47f1977652af71f (diff)
Fixed #32602 -- Clarified wording of TestCase class.
Diffstat (limited to 'docs/topics/testing/advanced.txt')
-rw-r--r--docs/topics/testing/advanced.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/topics/testing/advanced.txt b/docs/topics/testing/advanced.txt
index fda77e7661..6f3f54e341 100644
--- a/docs/topics/testing/advanced.txt
+++ b/docs/topics/testing/advanced.txt
@@ -562,9 +562,10 @@ and tear down the test suite.
``parallel`` specifies the number of processes. If ``parallel`` is greater
than ``1``, the test suite will run in ``parallel`` processes. If there are
- fewer test cases than configured processes, Django will reduce the number
- of processes accordingly. Each process gets its own database. This option
- requires the third-party ``tblib`` package to display tracebacks correctly.
+ fewer test case classes than configured processes, Django will reduce the
+ number of processes accordingly. Each process gets its own database. This
+ option requires the third-party ``tblib`` package to display tracebacks
+ correctly.
``tags`` can be used to specify a set of :ref:`tags for filtering tests
<topics-tagging-tests>`. May be combined with ``exclude_tags``.
@@ -682,7 +683,7 @@ Methods
label can take one of four forms:
* ``path.to.test_module.TestCase.test_method`` -- Run a single test method
- in a test case.
+ in a test case class.
* ``path.to.test_module.TestCase`` -- Run all the test methods in a test
case.
* ``path.to.module`` -- Search for and run all tests in the named Python