(msg)
| 144 | |
| 145 | @pytest.mark.parametrize("msg", [b"{{", b"!!binary 123"]) |
| 146 | def test_decode_parse_error(msg): |
| 147 | with pytest.raises(msgspec.DecodeError): |
| 148 | msgspec.yaml.decode(msg) |
| 149 | |
| 150 | |
| 151 | def test_decode_validation_error(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…