(self, pytester: Pytester)
| 1492 | |
| 1493 | class TestAssertionPass: |
| 1494 | def test_option_default(self, pytester: Pytester) -> None: |
| 1495 | config = pytester.parseconfig() |
| 1496 | assert config.getini("enable_assertion_pass_hook") is False |
| 1497 | |
| 1498 | @pytest.fixture |
| 1499 | def flag_on(self, pytester: Pytester): |
nothing calls this directly
no test coverage detected