(version)
| 435 | |
| 436 | @pytest.mark.pandas |
| 437 | def test_all_null_category(version): |
| 438 | # ARROW-1188 |
| 439 | df = pd.DataFrame({"A": (1, 2, 3), "B": (None, None, None)}) |
| 440 | df = df.assign(B=df.B.astype("category")) |
| 441 | _check_pandas_roundtrip(df, version=version) |
| 442 | |
| 443 | |
| 444 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected