Integration test for issue #3775
(pytester: Pytester)
| 1302 | |
| 1303 | |
| 1304 | def test_collect_pytest_prefix_bug_integration(pytester: Pytester) -> None: |
| 1305 | """Integration test for issue #3775""" |
| 1306 | p = pytester.copy_example("config/collect_pytest_prefix") |
| 1307 | result = pytester.runpytest(p) |
| 1308 | result.stdout.fnmatch_lines(["* 1 passed *"]) |
| 1309 | |
| 1310 | |
| 1311 | def test_collect_pytest_prefix_bug(pytestconfig): |
nothing calls this directly
no test coverage detected