(file_fixture)
| 350 | |
| 351 | |
| 352 | def test_open_file_with_wrong_options(file_fixture): |
| 353 | file_fixture.write_batches() |
| 354 | source = file_fixture.get_source() |
| 355 | |
| 356 | with pytest.raises(TypeError): |
| 357 | pa.ipc.open_file(source, options=True) |
| 358 | |
| 359 | |
| 360 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected