这是我的程序中的流程
277: try:
278: with open(r"c:\afile.txt", "w") as aFile:
...: pass # write data, other exceptions/errors can occur here that have to be handled by the caller
329: except IOError as ex:
...: print ex
332: finally:
333: if os.path.exists(r"c:\afile.txt"):
334: shutil.copy(r"c:\afile.txt", r"c:\dest.txt")
除了从第 278 行到第 333 行之外,我已经覆盖了所有路径
- 我得到了正常的快乐流。
__builtin__.open
当使用所述文件名调用 open 时,我存根引发 IOError
但是我如何从 278 到 333。这甚至可能吗?
附加信息:-使用coverage.py 3.4(我们不能升级到3.5)