()
| 613 | |
| 614 | |
| 615 | def test_linematcher_string_api() -> None: |
| 616 | lm = LineMatcher(["foo", "bar"]) |
| 617 | assert str(lm) == "foo\nbar" |
| 618 | |
| 619 | |
| 620 | def test_pytest_addopts_before_pytester(request, monkeypatch: MonkeyPatch) -> None: |
nothing calls this directly
no test coverage detected