How do I test the following code with mocks (using mocks, the patch decorator and sentinels provided by Michael Foord's Mock framework):
def testme(filepath):
with open(filepath, 'r') as f:
return f.read()
|
How do I test the following code with mocks (using mocks, the patch decorator and sentinels provided by Michael Foord's Mock framework):
| |||||||||||||||
feedback
|
|
Updated Daryl's answer to fix changes to Mock class.
| |||||||
feedback
|
|
The way to do this has changed in mock 0.7.0 which finally supports mocking the python protocol methods (magic methods), particularly using the MagicMock: http://www.voidspace.org.uk/python/mock/magicmock.html An example of mocking open as a context manager (from the examples page in the mock documentation):
| |||||||||||||||||
feedback
|
|
When used in a with statement, open returns a context manager. So the mock of open needs to also. A context manager must have an
| |||||||||
feedback
|