(version)
| 442 | |
| 443 | @pytest.mark.pandas |
| 444 | def test_all_null_category(version): |
| 445 | # ARROW-1188 |
| 446 | df = pd.DataFrame({"A": (1, 2, 3), "B": (None, None, None)}) |
| 447 | df = df.assign(B=df.B.astype("category")) |
| 448 | _check_pandas_roundtrip(df, version=version) |
| 449 | |
| 450 | |
| 451 | @pytest.mark.pandas |
nothing calls this directly
no test coverage detected