(start, stop, right_boundary, left_boundary, drop)
| 4403 | ], |
| 4404 | ) |
| 4405 | def test_with_boundary(start, stop, right_boundary, left_boundary, drop): |
| 4406 | x = np.array([-1, -2, 2, 4, 3]) |
| 4407 | df = pd.DataFrame({"B": range(len(x))}, index=x) |
| 4408 | result = methods.boundary_slice(df, start, stop, right_boundary, left_boundary) |
| 4409 | expected = df.drop(drop) |
| 4410 | tm.assert_frame_equal(result, expected) |
| 4411 | |
| 4412 | |
| 4413 | @pytest.mark.parametrize( |