diff options
author | Raymond Hettinger <python@rcn.com> | 2009-03-24 00:22:53 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-03-24 00:22:53 (GMT) |
commit | 6b232cdc7f652b34b5809d18cb9106578d840da8 (patch) | |
tree | 3091644aa05429dee61224061d09b4280785669f | |
parent | fd88ea7db2db5f3c452b7d2ee452f6821408123b (diff) | |
download | cpython-6b232cdc7f652b34b5809d18cb9106578d840da8.zip cpython-6b232cdc7f652b34b5809d18cb9106578d840da8.tar.gz cpython-6b232cdc7f652b34b5809d18cb9106578d840da8.tar.bz2 |
Add links to related resources.
-rw-r--r-- | Doc/library/unittest.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst index b13c7a6..22df648 100644 --- a/Doc/library/unittest.rst +++ b/Doc/library/unittest.rst @@ -83,6 +83,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 <http://code.google.com/p/python-nose/>`_ and `py.test <http://pytest.org>`_ + Third-party unittest frameworks with a lighter-weight syntax + for writing tests. For example, ``assert func(10) == 42``. + + `python-mock <http://python-mock.sourceforge.net/>`_ and `minimock <http://blog.ianbicking.org/minimock.html>`_ + Tools for creating mock test objects (objects simulating external resources). .. _unittest-minimal-example: |