(version)
| 367 | |
| 368 | @pytest.mark.numpy |
| 369 | def test_boolean_object_nulls(version): |
| 370 | repeats = 100 |
| 371 | table = pa.Table.from_arrays( |
| 372 | [np.array([False, None, True] * repeats, dtype=object)], |
| 373 | names=["arr"] |
| 374 | ) |
| 375 | _check_arrow_roundtrip(table) |
| 376 | |
| 377 | |
| 378 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected