(
self,
create_oauth2_password_request_form: Callable[
[str, str], OAuth2PasswordRequestForm
],
user_manager: UserManagerMock[UserModel],
)
| 667 | assert user is None |
| 668 | |
| 669 | async def test_wrong_password( |
| 670 | self, |
| 671 | create_oauth2_password_request_form: Callable[ |
| 672 | [str, str], OAuth2PasswordRequestForm |
| 673 | ], |
| 674 | user_manager: UserManagerMock[UserModel], |
| 675 | ): |
| 676 | form = create_oauth2_password_request_form("king.arthur@camelot.bt", "percival") |
| 677 | user = await user_manager.authenticate(form) |
| 678 | assert user is None |
| 679 | |
| 680 | async def test_valid_credentials( |
| 681 | self, |
nothing calls this directly
no test coverage detected