#714
(self)
| 652 | assert metafunc._calls[1].params == dict(x=1, y=3) |
| 653 | |
| 654 | def test_parametrize_indirect_list(self) -> None: |
| 655 | """#714""" |
| 656 | |
| 657 | def func(x, y): |
| 658 | pass |
| 659 | |
| 660 | metafunc = self.Metafunc(func) |
| 661 | metafunc.parametrize("x, y", [("a", "b")], indirect=["x"]) |
| 662 | assert metafunc._calls[0].funcargs == dict(y="b") |
| 663 | assert metafunc._calls[0].params == dict(x="a") |
| 664 | |
| 665 | def test_parametrize_indirect_list_all(self) -> None: |
| 666 | """#714""" |
nothing calls this directly
no test coverage detected