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
206 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
78 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))
...