(
self,
requested_fixturedef: FixtureDef[object],
requested_scope: Scope,
)
| 490 | |
| 491 | @abc.abstractmethod |
| 492 | def _check_scope( |
| 493 | self, |
| 494 | requested_fixturedef: FixtureDef[object], |
| 495 | requested_scope: Scope, |
| 496 | ) -> None: |
| 497 | raise NotImplementedError() |
| 498 | |
| 499 | @property |
| 500 | def fixturenames(self) -> list[str]: |
no outgoing calls
no test coverage detected