(df, pdf)
| 410 | |
| 411 | |
| 412 | def test_value_counts(df, pdf): |
| 413 | with pytest.raises( |
| 414 | AttributeError, match="'DataFrame' object has no attribute 'value_counts'" |
| 415 | ): |
| 416 | df.value_counts() |
| 417 | assert_eq(df.x.value_counts(), pdf.x.value_counts().astype("int64")) |
| 418 | |
| 419 | |
| 420 | def test_dropna(pdf): |
nothing calls this directly
no test coverage detected