()
| 382 | |
| 383 | @needs_cffi |
| 384 | def test_export_import_batch_with_extension(): |
| 385 | with registered_extension_type(ParamExtType(1)): |
| 386 | check_export_import_batch( |
| 387 | "ArrowArray", |
| 388 | pa.RecordBatch._export_to_c, |
| 389 | pa.RecordBatch._import_from_c, |
| 390 | make_extension_batch, |
| 391 | ) |
| 392 | |
| 393 | |
| 394 | @needs_cffi |
nothing calls this directly
no test coverage detected