()
| 64 | |
| 65 | |
| 66 | def test_ensure_bytes_pyarrow_buffer(): |
| 67 | pa = pytest.importorskip("pyarrow") |
| 68 | buf = pa.py_buffer(b"123") |
| 69 | result = ensure_bytes(buf) |
| 70 | assert isinstance(result, bytes) |
| 71 | |
| 72 | |
| 73 | def test_ensure_unicode(): |
nothing calls this directly
no test coverage detected