Adding an example to unittest.mock.patch documentation

This commit is contained in:
Michael Foord 2012-03-28 15:32:08 +01:00
parent 54b3db8c84
commit 901553668a
1 changed files with 9 additions and 0 deletions

View File

@ -984,6 +984,15 @@ patch
`patch.dict(...)`, `patch.multiple(...)` and `patch.object(...)` are
available for alternate use-cases.
`patch` as function decorator, creating the mock for you and passing it into
the decorated function:
>>> @patch('__main__.SomeClass')
... def function(mock_class):
... print(mock_class is SomeClass)
...
>>> function()
True
Patching a class replaces the class with a `MagicMock` *instance*. If the
class is instantiated in the code under test then it will be the