()
| 415 | |
| 416 | @needs_cffi |
| 417 | def test_export_import_batch_with_extension(): |
| 418 | with registered_extension_type(ParamExtType(1)): |
| 419 | check_export_import_batch( |
| 420 | "ArrowArray", |
| 421 | pa.RecordBatch._export_to_c, |
| 422 | pa.RecordBatch._import_from_c, |
| 423 | make_extension_batch, |
| 424 | ) |
| 425 | |
| 426 | |
| 427 | @needs_cffi |
nothing calls this directly
no test coverage detected