(auth, username, password, message)
| 57 | (("a", "test", b"Incorrect username."), ("test", "a", b"Incorrect password.")), |
| 58 | ) |
| 59 | def test_login_validate_input(auth, username, password, message): |
| 60 | response = auth.login(username, password) |
| 61 | assert message in response.data |
| 62 | |
| 63 | |
| 64 | def test_logout(client, auth): |