From 2cff35ef3020a865cc92dcc0a1c9d741d2320dc0 Mon Sep 17 00:00:00 2001 From: kuyan Date: Mon, 14 Apr 2014 17:32:11 -0700 Subject: [PATCH] Revise Unittest section description --- docs/writing/tests.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/writing/tests.rst b/docs/writing/tests.rst index d88877c..ae99fd1 100644 --- a/docs/writing/tests.rst +++ b/docs/writing/tests.rst @@ -76,11 +76,11 @@ The Basics Unittest -------- -:mod:`unittest` is the batteries-included test module in the Python standard library. -Its API will be familiar to anyone who has used any of the JUnit/nUnit/CppUnit -series of tools. +:mod:`unittest` is the batteries-included test module in the Python standard +library. Its API will be familiar to anyone who has used any of the +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