(fs, pathfn)
| 1058 | |
| 1059 | |
| 1060 | def test_open_input_stream_not_found(fs, pathfn): |
| 1061 | # The proper exception should be raised for this common case (ARROW-15896) |
| 1062 | p = pathfn('open-input-stream-not-found') |
| 1063 | with pytest.raises(FileNotFoundError): |
| 1064 | fs.open_input_stream(p) |
| 1065 | |
| 1066 | |
| 1067 | @pytest.mark.gzip |
nothing calls this directly
no test coverage detected