()
| 132 | |
| 133 | |
| 134 | def test_encode_unsupported(): |
| 135 | unserializable = Unserializable() |
| 136 | with pytest.raises(ValueError): |
| 137 | jsonable_encoder(unserializable) |
| 138 | |
| 139 | |
| 140 | def test_encode_custom_json_encoders_model_pydanticv2(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…