()
| 149 | |
| 150 | |
| 151 | def test_decode_validation_error(): |
| 152 | with pytest.raises(msgspec.ValidationError, match="Expected `str`"): |
| 153 | msgspec.yaml.decode(b"[1, 2, 3]", type=List[str]) |
| 154 | |
| 155 | |
| 156 | @pytest.mark.parametrize("strict", [True, False]) |
nothing calls this directly
no test coverage detected
searching dependent graphs…