()
| 180 | |
| 181 | |
| 182 | def test_encode_model_with_alias(): |
| 183 | model = ModelWithAlias(Foo="Bar") |
| 184 | assert jsonable_encoder(model) == {"Foo": "Bar"} |
| 185 | |
| 186 | |
| 187 | def test_encode_model_with_default(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…