Test parsing invalid SRCINFO from string raises error.
(content: str)
| 57 | ], |
| 58 | ) |
| 59 | def test_from_str_invalid(content: str) -> None: |
| 60 | """Test parsing invalid SRCINFO from string raises error.""" |
| 61 | with pytest.raises(SourceInfoError): |
| 62 | source_info_from_str(content) |
| 63 | |
| 64 | |
| 65 | @pytest.mark.parametrize("schema", [None, SourceInfoSchema("1")]) |
nothing calls this directly
no test coverage detected