(oauth_account4: OAuthAccountModel)
| 198 | |
| 199 | @pytest.fixture |
| 200 | def verified_user_oauth(oauth_account4: OAuthAccountModel) -> UserOAuthModel: |
| 201 | return UserOAuthModel( |
| 202 | email="lake.lady@camelot.bt", |
| 203 | hashed_password=excalibur_password_hash, |
| 204 | is_active=False, |
| 205 | oauth_accounts=[oauth_account4], |
| 206 | ) |
| 207 | |
| 208 | |
| 209 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…