From: Raymond Hettinger Date: Tue, 24 Mar 2009 00:21:36 +0000 (+0000) Subject: Add links to related resources. X-Git-Tag: v2.6.2c1~79 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f70097684ea2889e280caab071d126888bac4073;p=python Add links to related resources. --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index 1a1b1d86fe..8936b81a91 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -80,6 +80,12 @@ graphical environments) without any need to derive from a specific class. Kent Beck's original paper on testing frameworks using the pattern shared by :mod:`unittest`. + `Nose `_ and `py.test `_ + Third-party unittest frameworks with a lighter-weight syntax + for writing tests. For example, ``assert func(10) == 42``. + + `python-mock `_ and `minimock `_ + Tools for creating mock test objects (objects simulating external resources). .. _unittest-minimal-example: