()
| 58 | |
| 59 | |
| 60 | def test_ensure_bytes_ndarray(): |
| 61 | np = pytest.importorskip("numpy") |
| 62 | result = ensure_bytes(np.arange(12)) |
| 63 | assert isinstance(result, bytes) |
| 64 | |
| 65 | |
| 66 | def test_ensure_bytes_pyarrow_buffer(): |
nothing calls this directly
no test coverage detected