summaryrefslogtreecommitdiffstats
path: root/Doc/library/unittest.mock.rst
diff options
context:
space:
mode:
authorMichael Foord <michael@voidspace.org.uk>2012-03-28 14:08:08 (GMT)
committerMichael Foord <michael@voidspace.org.uk>2012-03-28 14:08:08 (GMT)
commit54b3db8c849e039c6d43141bd1351d6eb743679d (patch)
tree24f662c3c969b2d56c0ca22ecf0c2c5ee035a647 /Doc/library/unittest.mock.rst
parenta9e6fb201dc1746b1394a804095fe58e35829a6f (diff)
downloadcpython-54b3db8c849e039c6d43141bd1351d6eb743679d.zip
cpython-54b3db8c849e039c6d43141bd1351d6eb743679d.tar.gz
cpython-54b3db8c849e039c6d43141bd1351d6eb743679d.tar.bz2
Minor unittest.mock.patch doc / docstring improvement
Diffstat (limited to 'Doc/library/unittest.mock.rst')
-rw-r--r--Doc/library/unittest.mock.rst25
1 files changed, 14 insertions, 11 deletions
diff --git a/Doc/library/unittest.mock.rst b/Doc/library/unittest.mock.rst
index 3e5f9fa..2fe5849 100644
--- a/Doc/library/unittest.mock.rst
+++ b/Doc/library/unittest.mock.rst
@@ -920,17 +920,20 @@ patch
`patch` acts as a function decorator, class decorator or a context
manager. Inside the body of the function or with statement, the `target`
- (specified in the form `'package.module.ClassName'`) is patched
- with a `new` object. When the function/with statement exits the patch is
- undone.
-
- The `target` is imported and the specified attribute patched with the new
- object, so it must be importable from the environment you are calling the
- decorator from. The target is imported when the decorated function is
- executed, not at decoration time.
-
- If `new` is omitted, then a new `MagicMock` is created and passed in as an
- extra argument to the decorated function.
+ is patched with a `new` object. When the function/with statement exits
+ the patch is undone.
+
+ If `new` is omitted, then the target is replaced with a
+ :class:`MagicMock`. If `patch` is used as a decorator and `new` is
+ omitted, the created mock is passed in as an extra argument to the
+ decorated function. If `patch` is used as a context manager the created
+ mock is returned by the context manager.
+
+ `target` should be a string in the form `'package.module.ClassName'`. The
+ `target` is imported and the specified object replaced with the `new`
+ object, so the `target` must be importable from the environment you are
+ calling `patch` from. The target is imported when the decorated function
+ is executed, not at decoration time.
The `spec` and `spec_set` keyword arguments are passed to the `MagicMock`
if patch is creating one for you.