()
| 169 | |
| 170 | @pytest.fixture |
| 171 | def inactive_user() -> UserModel: |
| 172 | return UserModel( |
| 173 | email="percival@camelot.bt", |
| 174 | hashed_password=angharad_password_hash, |
| 175 | is_active=False, |
| 176 | ) |
| 177 | |
| 178 | |
| 179 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…