()
| 163 | |
| 164 | |
| 165 | def test_not_from_attributes(): |
| 166 | class Pet(BaseModel): |
| 167 | name: str |
| 168 | species: str |
| 169 | |
| 170 | with pytest.raises(PydanticUserError): |
| 171 | deprecated_from_orm(Pet, None) |
| 172 | |
| 173 | |
| 174 | def test_object_with_getattr(): |
nothing calls this directly
no test coverage detected