()
| 121 | |
| 122 | |
| 123 | def test_na_float(): |
| 124 | table = pa.table({"a": [1.0, None, 2.0]}) |
| 125 | df = table.__dataframe__() |
| 126 | col = df.get_column_by_name("a") |
| 127 | assert col.null_count == 1 |
| 128 | assert isinstance(col.null_count, int) |
| 129 | |
| 130 | |
| 131 | def test_noncategorical(): |
nothing calls this directly
no test coverage detected