Revise Unittest section description

This commit is contained in:
kuyan
2014-04-14 17:32:11 -07:00
parent 1800feb118
commit 2cff35ef30
+4 -4
View File
@@ -76,11 +76,11 @@ The Basics
Unittest Unittest
-------- --------
:mod:`unittest` is the batteries-included test module in the Python standard library. :mod:`unittest` is the batteries-included test module in the Python standard
Its API will be familiar to anyone who has used any of the JUnit/nUnit/CppUnit library. Its API will be familiar to anyone who has used any of the
series of tools. JUnit/nUnit/CppUnit series of tools.
Creating testcases is accomplished by subclassing a :class:`TestCase` base class Creating test cases is accomplished by subclassing :class:`unittest.TestCase`.
.. code-block:: python .. code-block:: python