()
| 603 | |
| 604 | |
| 605 | def test_linematcher_string_api() -> None: |
| 606 | lm = LineMatcher(["foo", "bar"]) |
| 607 | assert str(lm) == "foo\nbar" |
| 608 | |
| 609 | |
| 610 | def test_pytest_addopts_before_pytester(request, monkeypatch: MonkeyPatch) -> None: |
nothing calls this directly
no test coverage detected