diff options
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r-- | Doc/library/unittest.rst | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 8188e70..5efcc32 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -260,7 +260,6 @@ Such a working environment for the testing code is called a :dfn:`fixture`. Often, many small test cases will use the same fixture. In this case, we would end up subclassing :class:`SimpleWidgetTestCase` into many small one-method classes such as :class:`DefaultWidgetSizeTestCase`. This is time-consuming and - discouraging, so in the same vein as JUnit, :mod:`unittest` provides a simpler mechanism:: |