(pdf, df, drop)
| 1137 | |
| 1138 | @pytest.mark.parametrize("drop", [True, False]) |
| 1139 | def test_reset_index(pdf, df, drop): |
| 1140 | assert_eq(df.reset_index(drop=drop), pdf.reset_index(drop=drop), check_index=False) |
| 1141 | assert_eq( |
| 1142 | df.x.reset_index(drop=drop), pdf.x.reset_index(drop=drop), check_index=False |
| 1143 | ) |
| 1144 | |
| 1145 | |
| 1146 | def test_head(pdf, df): |
nothing calls this directly
no test coverage detected