Tagged Questions
11
votes
3answers
1k views
How do I mock an open used in a with statement (using the Mock framework in Python)?
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:
...
10
votes
4answers
239 views
Opening multiple (an unspecified number) of files at once and ensuring they are correctly closed
I am aware that I can open multiple files with something like,
with open('a', 'rb') as a, open('b', 'rb') as b:
But I have a situation where I have a list of files to open and am wondering what the ...
4
votes
1answer
99 views
how to use python closing context manager
The standard library open function works both as a function:
f = open('file.txt')
print(type(f))
<type 'file'>
or as a context manager:
with open('file.txt') as f:
print(type(f))
...
1
vote
2answers
38 views
Python Mock - Mocking several open
After reading this : How do I mock an open used in a with statement (using the Mock framework in Python)?
I'm able to mock the open function in python using :
with patch(open_name, create=True) as ...