From: Raymond Hettinger Date: Tue, 24 Mar 2009 00:23:08 +0000 (+0000) Subject: Add links to related resources. X-Git-Tag: 3.0~296 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8e0cf7b20a91686c86c44e5c56f69ec14af89d10;p=thirdparty%2FPython%2Fcpython.git Add links to related resources. --- diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index d18107ad55de..10fa60aade02 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -78,6 +78,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: