Guest User

Untitled

a guest
Oct 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. import pytest
  2. import os
  3.  
  4. @pytest.mark.skip_selenium
  5. @pytest.mark.nondestructive
  6. class TestNothin(object):
  7. @pytest.mark.bugzilla('824975')
  8. def test_new_bz(self):
  9. print('hello')
  10. assert(os.path.exists('/etc'))
  11.  
  12. @pytest.mark.bugzilla('12345')
  13. def test_closed_bz(self):
  14. assert(os.path.exists('/etc'))
  15.  
  16. @pytest.mark.bugzilla('12345')
  17. def test_closed_bz_with_failure(self):
  18. assert(os.path.exists('/etcccc'))
Add Comment
Please, Sign In to add comment