summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.rst
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2017-01-18 12:06:38 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2017-01-18 12:06:38 (GMT)
commit37f183d43d9858c428997430042bdc16ce353850 (patch)
treec1fa9413c52092b1381a8fa9e2d535e61bf7e508 /Doc/library/unittest.rst
parent83ec302e5204840ca05e92d9a52dcb388ee30978 (diff)
downloadcpython-37f183d43d9858c428997430042bdc16ce353850.zip
cpython-37f183d43d9858c428997430042bdc16ce353850.tar.gz
cpython-37f183d43d9858c428997430042bdc16ce353850.tar.bz2
Issue #29274: tests cases → test cases
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r--Doc/library/unittest.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index f02b16a..76008c4 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -1465,7 +1465,7 @@ Grouping tests
.. class:: TestSuite(tests=())
- This class represents an aggregation of individual tests cases and test suites.
+ This class represents an aggregation of individual test cases and test suites.
The class presents the interface needed by the test runner to allow it to be run
as any other test case. Running a :class:`TestSuite` instance is the same as
iterating over the suite, running each test individually.
@@ -1573,7 +1573,7 @@ Loading and running tests
.. method:: loadTestsFromTestCase(testCaseClass)
- Return a suite of all tests cases contained in the :class:`TestCase`\ -derived
+ Return a suite of all test cases contained in the :class:`TestCase`\ -derived
:class:`testCaseClass`.
A test case instance is created for each method named by
@@ -1585,7 +1585,7 @@ Loading and running tests
.. method:: loadTestsFromModule(module, pattern=None)
- Return a suite of all tests cases contained in the given module. This
+ Return a suite of all test cases contained in the given module. This
method searches *module* for classes derived from :class:`TestCase` and
creates an instance of the class for each test method defined for the
class.
@@ -1615,7 +1615,7 @@ Loading and running tests
.. method:: loadTestsFromName(name, module=None)
- Return a suite of all tests cases given a string specifier.
+ Return a suite of all test cases given a string specifier.
The specifier *name* is a "dotted name" that may resolve either to a
module, a test case class, a test method within a test case class, a