Issue #4700
(
pytester: Pytester, test_name, expected_outcome
)
| 1202 | ], |
| 1203 | ) |
| 1204 | def test_setup_inheritance_skipping( |
| 1205 | pytester: Pytester, test_name, expected_outcome |
| 1206 | ) -> None: |
| 1207 | """Issue #4700""" |
| 1208 | pytester.copy_example(f"unittest/{test_name}") |
| 1209 | result = pytester.runpytest() |
| 1210 | result.stdout.fnmatch_lines([f"* {expected_outcome} in *"]) |
| 1211 | |
| 1212 | |
| 1213 | def test_BdbQuit(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected