(self)
| 51 | return python.Metafunc(definition, fixtureinfo, config, _ispytest=True) |
| 52 | |
| 53 | def test_no_funcargs(self) -> None: |
| 54 | def function(): |
| 55 | pass |
| 56 | |
| 57 | metafunc = self.Metafunc(function) |
| 58 | assert not metafunc.fixturenames |
| 59 | repr(metafunc._calls) |
| 60 | |
| 61 | def test_function_basic(self) -> None: |
| 62 | def func(arg1, arg2="qwe"): |