(self, pytester: Pytester)
| 1183 | return readme.is_file() |
| 1184 | |
| 1185 | def test_readme_passed(self, pytester: Pytester) -> None: |
| 1186 | pytester.makepyfile("def test_always_passes(): pass") |
| 1187 | pytester.runpytest() |
| 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") |
nothing calls this directly
no test coverage detected