()
| 188 | |
| 189 | @pytest.fixture |
| 190 | def verified_user() -> UserModel: |
| 191 | return UserModel( |
| 192 | email="lake.lady@camelot.bt", |
| 193 | hashed_password=excalibur_password_hash, |
| 194 | is_active=True, |
| 195 | is_verified=True, |
| 196 | ) |
| 197 | |
| 198 | |
| 199 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…