()
| 237 | |
| 238 | @pytest.fixture |
| 239 | def verified_superuser_oauth() -> UserOAuthModel: |
| 240 | return UserOAuthModel( |
| 241 | email="the.real.merlin@camelot.bt", |
| 242 | hashed_password=viviane_password_hash, |
| 243 | is_superuser=True, |
| 244 | is_verified=True, |
| 245 | oauth_accounts=[], |
| 246 | ) |
| 247 | |
| 248 | |
| 249 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…