(self, src, dest)
| 122 | assert dest == "move_to" |
| 123 | |
| 124 | def copy_file(self, src, dest): |
| 125 | assert src == "copy_file_from" |
| 126 | assert dest == "copy_file_to" |
| 127 | |
| 128 | def open_input_stream(self, path): |
| 129 | if "notfound" in path: |
no outgoing calls
no test coverage detected