(pdf, df, drop)
| 1083 | |
| 1084 | @pytest.mark.parametrize("drop", [True, False]) |
| 1085 | def test_reset_index(pdf, df, drop): |
| 1086 | assert_eq(df.reset_index(drop=drop), pdf.reset_index(drop=drop), check_index=False) |
| 1087 | assert_eq( |
| 1088 | df.x.reset_index(drop=drop), pdf.x.reset_index(drop=drop), check_index=False |
| 1089 | ) |
| 1090 | |
| 1091 | |
| 1092 | def test_head(pdf, df): |
nothing calls this directly
no test coverage detected
searching dependent graphs…