()
| 595 | |
| 596 | |
| 597 | def test_linematcher_no_matching_after_match() -> None: |
| 598 | lm = LineMatcher(["1", "2", "3"]) |
| 599 | lm.fnmatch_lines(["1", "3"]) |
| 600 | with pytest.raises(pytest.fail.Exception) as e: |
| 601 | lm.no_fnmatch_line("*") |
| 602 | assert str(e.value).splitlines() == ["fnmatch: '*'", " with: '1'"] |
| 603 | |
| 604 | |
| 605 | def test_linematcher_string_api() -> None: |
nothing calls this directly
no test coverage detected
searching dependent graphs…