(version)
| 360 | |
| 361 | @pytest.mark.numpy |
| 362 | def test_boolean_object_nulls(version): |
| 363 | repeats = 100 |
| 364 | table = pa.Table.from_arrays( |
| 365 | [np.array([False, None, True] * repeats, dtype=object)], |
| 366 | names=["arr"] |
| 367 | ) |
| 368 | _check_arrow_roundtrip(table) |
| 369 | |
| 370 | |
| 371 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected