()
| 170 | |
| 171 | |
| 172 | def test_encode_model_with_config(): |
| 173 | model = ModelWithConfig(role=RoleEnum.admin) |
| 174 | assert jsonable_encoder(model) == {"role": "admin"} |
| 175 | |
| 176 | |
| 177 | def test_encode_model_with_alias_raises(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…