()
| 1920 | |
| 1921 | |
| 1922 | def test_py_open_output_stream(): |
| 1923 | fs = PyFileSystem(DummyHandler()) |
| 1924 | |
| 1925 | with fs.open_output_stream("somefile") as f: |
| 1926 | f.write(b"data") |
| 1927 | |
| 1928 | |
| 1929 | def test_py_open_append_stream(): |
nothing calls this directly
no test coverage detected