Guest User

Untitled

a guest
May 27th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. from lettuce import *
  2. from pytwitt.core import Twitter, User
  3.  
  4. @step(r'Given my user')
  5. def given_my_user(self):
  6. pass
  7.  
  8. @step(r'When I write a twitt')
  9. def when_i_write_a_twitt(step):
  10. pass
  11. #world.twitter.twitt('testing 332323')
  12.  
  13. @step(r'Then my user status should be changed')
  14. def then_my_user_status_should_be_changed(step):
  15. pass
  16. #assert world.twitter.last_status = 'testing 123', 'Got %s' % world.twitter.last_status
  17.  
  18. @step(r'And twitt should be appear in timeline')
  19. def and_twitt_should_be_appear_in_timeline(step):
  20. pass
Add Comment
Please, Sign In to add comment