(pdf, df, split_every, split_out)
| 104 | @pytest.mark.parametrize("split_every", [False, None, 5]) |
| 105 | @pytest.mark.parametrize("split_out", [1, True]) |
| 106 | def test_value_counts(pdf, df, split_every, split_out): |
| 107 | assert_eq( |
| 108 | df.x.value_counts(split_every=split_every, split_out=split_out), |
| 109 | pdf.x.value_counts(), |
| 110 | check_index=split_out is not True, |
| 111 | ) |
| 112 | |
| 113 | |
| 114 | def test_value_counts_sort(pdf): |
nothing calls this directly
no test coverage detected