(self, path, metadata)
| 143 | return pa.BufferOutputStream() |
| 144 | |
| 145 | def open_append_stream(self, path, metadata): |
| 146 | if "notfound" in path: |
| 147 | raise FileNotFoundError(path) |
| 148 | return pa.BufferOutputStream() |
| 149 | |
| 150 | |
| 151 | @pytest.fixture |
no test coverage detected