Advertisement
ogionfrost

Untitled

Jul 20th, 2017
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. import pytest
  2.  
  3. from application import Application
  4.  
  5.  
  6. @pytest.fixture
  7. def app(request):
  8.     fixture = Application()
  9.     request.addfinalizer(fixture.destroy)
  10.     return fixture
  11.  
  12.  
  13. def test_positive_email(app):
  14.     app.login_email(username="osyanin@gmail.com", password="pass")
  15.     app.logout()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement