]> granicus.if.org Git - python/commitdiff
Add links to related resources.
authorRaymond Hettinger <python@rcn.com>
Tue, 24 Mar 2009 00:21:36 +0000 (00:21 +0000)
committerRaymond Hettinger <python@rcn.com>
Tue, 24 Mar 2009 00:21:36 +0000 (00:21 +0000)
Doc/library/unittest.rst

index 1a1b1d86fe75e5fceda1853d45fa5199a3425d62..8936b81a9198fbeb64081a67f3c3c3b78b037647 100644 (file)
@@ -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 <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: