Guest User

Untitled

a guest
Jan 14th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. def login_first(test):
  2. """
  3. Decorator offering convenience login for tests that require it.
  4. """
  5.  
  6. def _login(self):
  7. self.client.login(
  8. username='testusername',
  9. password='testpassword')
  10. return test(self)
  11.  
  12. return _login
Add Comment
Please, Sign In to add comment