(self)
| 62 | return python.Metafunc(definition, fixtureinfo, config, _ispytest=True) |
| 63 | |
| 64 | def test_no_funcargs(self) -> None: |
| 65 | def function(): |
| 66 | pass |
| 67 | |
| 68 | metafunc = self.Metafunc(function) |
| 69 | assert not metafunc.fixturenames |
| 70 | repr(metafunc._calls) |
| 71 | |
| 72 | def test_function_basic(self) -> None: |
| 73 | def func(arg1, arg2="qwe"): |