(self, pytester: Pytester)
| 576 | |
| 577 | class TestInvocationVariants: |
| 578 | def test_earlyinit(self, pytester: Pytester) -> None: |
| 579 | p = pytester.makepyfile( |
| 580 | """ |
| 581 | import pytest |
| 582 | assert hasattr(pytest, 'mark') |
| 583 | """ |
| 584 | ) |
| 585 | result = pytester.runpython(p) |
| 586 | assert result.ret == 0 |
| 587 | |
| 588 | def test_pydoc(self, pytester: Pytester) -> None: |
| 589 | result = pytester.runpython_c("import pytest;help(pytest)") |
nothing calls this directly
no test coverage detected