(path, content=nil)
| 29 | end |
| 30 | |
| 31 | private def create_file(path, content=nil) |
| 32 | stream = @fs.open_output_stream(path) |
| 33 | stream.write(content) if content |
| 34 | stream.close |
| 35 | end |
| 36 | |
| 37 | private def read_file(path) |
| 38 | stream = @fs.open_input_stream(path) |
nothing calls this directly
no test coverage detected