We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6552756 commit b96b11fCopy full SHA for b96b11f
docs/writing/tests.rst
@@ -1,5 +1,5 @@
1
Testing Your Code
2
-=====================
+=================
3
4
Testing your code is very important.
5
@@ -248,3 +248,17 @@ the need to change any other code.
248
`unittest2 <http://pypi.python.org/pypi/unittest2>`_
249
250
251
+mock
252
+----
253
+
254
+mock is a library for testing in Python.
255
256
+::
257
258
+ $ pip install mock
259
260
+It allows you to replace parts of your system under test with mock objects and
261
+make assertions about how they have been used.
262
263
+ `mock <http://www.voidspace.org.uk/python/mock/>`_
264
0 commit comments