(db: Session)
| 19 | |
| 20 | |
| 21 | def test_not_authenticate_user(db: Session) -> None: |
| 22 | email = random_email() |
| 23 | password = random_lower_string() |
| 24 | user = authenticate(session=db, email=email, password=password) |
| 25 | assert user is None |
| 26 | |
| 27 | |
| 28 | def test_create_access_token(db: Session) -> None: |
nothing calls this directly
no test coverage detected