()
| 1927 | |
| 1928 | |
| 1929 | def test_py_open_append_stream(): |
| 1930 | fs = PyFileSystem(DummyHandler()) |
| 1931 | |
| 1932 | with fs.open_append_stream("somefile") as f: |
| 1933 | f.write(b"data") |
| 1934 | |
| 1935 | |
| 1936 | @pytest.mark.s3 |
nothing calls this directly
no test coverage detected