()
| 208 | |
| 209 | @pytest.fixture |
| 210 | def superuser() -> UserModel: |
| 211 | return UserModel( |
| 212 | email="merlin@camelot.bt", |
| 213 | hashed_password=viviane_password_hash, |
| 214 | is_superuser=True, |
| 215 | ) |
| 216 | |
| 217 | |
| 218 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…