(cls, obj)
| 197 | setattr(self, k, v) |
| 198 | @classmethod |
| 199 | def model_validate(cls, obj): |
| 200 | return cls(id=str(obj.id), email=obj.email) |
| 201 | |
| 202 | with patch("app.api.auth.UserOut", new=DummyUserOut): |
| 203 | result = await auth_api.get_me(current_user=user) |
no outgoing calls
no test coverage detected