(self, pytester: Pytester)
| 1188 | assert self.check_readme(pytester) is True |
| 1189 | |
| 1190 | def test_readme_failed(self, pytester: Pytester) -> None: |
| 1191 | pytester.makepyfile("def test_always_fails(): assert 0") |
| 1192 | pytester.runpytest() |
| 1193 | assert self.check_readme(pytester) is True |
| 1194 | |
| 1195 | |
| 1196 | def test_gitignore(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected