(self, pytester: Pytester)
| 963 | ) |
| 964 | |
| 965 | def test_request_getmodulepath(self, pytester: Pytester) -> None: |
| 966 | modcol = pytester.getmodulecol("def test_somefunc(): pass") |
| 967 | (item,) = pytester.genitems([modcol]) |
| 968 | req = fixtures.FixtureRequest(item, _ispytest=True) |
| 969 | assert req.path == modcol.path |
| 970 | |
| 971 | def test_request_fixturenames(self, pytester: Pytester) -> None: |
| 972 | pytester.makepyfile( |
nothing calls this directly
no test coverage detected