Guest User

Untitled

a guest
Feb 21st, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. module Methods
  2. def test_method
  3. true
  4. end
  5. end
  6.  
  7. Before do
  8. extend Methods
  9. end
  10.  
  11. When 'I run the suite' do
  12. end
  13.  
  14. Then 'the method should be callable' do
  15. test_method
  16. end
Add Comment
Please, Sign In to add comment