()
| 393 | |
| 394 | |
| 395 | def test_mode(): |
| 396 | pdf = pd.DataFrame({"x": [1, 2, 3, 1, 2]}) |
| 397 | df = from_pandas(pdf, npartitions=3) |
| 398 | |
| 399 | assert_eq(df.x.mode(), pdf.x.mode(), check_names=False) |
| 400 | |
| 401 | |
| 402 | def test_value_counts(df, pdf): |
nothing calls this directly
no test coverage detected