(stream_fixture)
| 325 | |
| 326 | |
| 327 | def test_open_stream_with_wrong_options(stream_fixture): |
| 328 | stream_fixture.write_batches() |
| 329 | source = stream_fixture.get_source() |
| 330 | |
| 331 | with pytest.raises(TypeError): |
| 332 | pa.ipc.open_stream(source, options=True) |
| 333 | |
| 334 | |
| 335 | @pytest.mark.parametrize('options', [ |
nothing calls this directly
no test coverage detected