(
oauth_account1: OAuthAccountModel, oauth_account2: OAuthAccountModel
)
| 158 | |
| 159 | @pytest.fixture |
| 160 | def user_oauth( |
| 161 | oauth_account1: OAuthAccountModel, oauth_account2: OAuthAccountModel |
| 162 | ) -> UserOAuthModel: |
| 163 | return UserOAuthModel( |
| 164 | email="king.arthur@camelot.bt", |
| 165 | hashed_password=guinevere_password_hash, |
| 166 | oauth_accounts=[oauth_account1, oauth_account2], |
| 167 | ) |
| 168 | |
| 169 | |
| 170 | @pytest.fixture |
nothing calls this directly
no test coverage detected
searching dependent graphs…