Issue #4700
(
pytester: Pytester, test_name, expected_outcome
)
| 1132 | ], |
| 1133 | ) |
| 1134 | def test_setup_inheritance_skipping( |
| 1135 | pytester: Pytester, test_name, expected_outcome |
| 1136 | ) -> None: |
| 1137 | """Issue #4700""" |
| 1138 | pytester.copy_example(f"unittest/{test_name}") |
| 1139 | result = pytester.runpytest() |
| 1140 | result.stdout.fnmatch_lines([f"* {expected_outcome} in *"]) |
| 1141 | |
| 1142 | |
| 1143 | def test_BdbQuit(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected