()
| 436 | |
| 437 | |
| 438 | def test_match_succeeds(): |
| 439 | with pytest.raises(ZeroDivisionError) as excinfo: |
| 440 | _ = 0 // 0 |
| 441 | excinfo.match(r".*zero.*") |
| 442 | |
| 443 | |
| 444 | def test_match_raises_error(pytester: Pytester) -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…