Guest User

Untitled

a guest
Sep 21st, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. def test_login(self):
  2. u = User(username='john', email='john@example.com', password='cat')
  3. db.session.add(u)
  4. self.assertEqual(response.status_code, 200)
  5. self.assertIn('You have been logged in!', response.get_data(as_text=True))
Add Comment
Please, Sign In to add comment