Skip to content
Snippets Groups Projects
Commit 271bfcbd authored by fuzzyman's avatar fuzzyman
Browse files

Link correction in docs.

parent f64353cf
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ testing, particularly monkey patching.
* `Article on mocking, patching and stubbing <http://www.voidspace.org.uk/python/articles/mocking.shtml>`_
Mock is very easy to use and is designed for use with
`unittest <http://pypi.python.org/pypi/unittest2 unittest>`_. Mock is based on
`unittest <http://pypi.python.org/pypi/unittest2>`_. Mock is based on
the 'action -> assertion' pattern instead of 'record -> replay' used by many
mocking frameworks. See the
`mock documentation <http://www.voidspace.org.uk/python/mock/>`_ for full
......@@ -134,3 +134,5 @@ your production code if they are called incorrectly::
...
TypeError: <lambda>() takes exactly 3 arguments (1 given)
The distribution contains tests and documentation. The tests require
`unittest2 <http://pypi.python.org/pypi/unittest2>`_ to run.
......@@ -34,7 +34,7 @@ with :const:`sentinel` for creating unique objects. See the `quick guide`_ for
some examples of how to use ``Mock``, ``MagicMock`` and ``patch``.
Mock is very easy to use and is designed for use with
`unittest <http://pypi.python.org/pypi/unittest2 unittest>`_. Mock is based on
`unittest <http://pypi.python.org/pypi/unittest2>`_. Mock is based on
the 'action -> assertion' pattern instead of 'record -> replay' used by many
mocking frameworks.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment