()
| 227 | |
| 228 | @pytest.fixture |
| 229 | def verified_superuser() -> UserModel: |
| 230 | return UserModel( |
| 231 | email="the.real.merlin@camelot.bt", |
| 232 | hashed_password=viviane_password_hash, |
| 233 | is_superuser=True, |
| 234 | is_verified=True, |
| 235 | ) |
| 236 | |
| 237 | |
| 238 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…