Guest User

Untitled

a guest
Feb 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. require 'rubygems'
  2. require 'bacon'
  3. require 'facon'
  4.  
  5.  
  6. class Crystal
  7. def meth
  8. end
  9. end
  10.  
  11. describe Crystal do
  12. it "should have a 'meth' method" do
  13. Crystal.new.should.respond_to(:meth)
  14. end
  15.  
  16. it 'should do something when calling this method' do
  17. c = Crystal.new
  18. c.should.receive(:smoke)
  19. c.meth
  20. end
  21. end
Add Comment
Please, Sign In to add comment