summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-05-31 14:15:25 (GMT)
committerGeorg Brandl <georg@python.org>2009-05-31 14:15:25 (GMT)
commitd198b76d3602aeeb985b8363d6be21602731d367 (patch)
tree51163eeabc9be8a47a74e07d000dc985ebce5750 /Doc/library/unittest.rst
parentd7ead0c23f041ab6aebbe49872c799111559d071 (diff)
downloadcpython-d198b76d3602aeeb985b8363d6be21602731d367.zip
cpython-d198b76d3602aeeb985b8363d6be21602731d367.tar.gz
cpython-d198b76d3602aeeb985b8363d6be21602731d367.tar.bz2
Fix markup.
Diffstat (limited to 'Doc/library/unittest.rst')
-rw-r--r--Doc/library/unittest.rst9
1 files changed, 3 insertions, 6 deletions
diff --git a/Doc/library/unittest.rst b/Doc/library/unittest.rst
index aed0395..2e4590c 100644
--- a/Doc/library/unittest.rst
+++ b/Doc/library/unittest.rst
@@ -79,18 +79,15 @@ need to derive from a specific class.
Module :mod:`doctest`
Another test-support module with a very different flavor.
- `Simple Smalltalk Testing: With Patterns
- <http://www.XProgramming.com/testfram.htm>`_
+ `Simple Smalltalk Testing: With Patterns <http://www.XProgramming.com/testfram.htm>`_
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>`_
+ `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>`_
+ `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).