Guest User

Untitled

a guest
Feb 20th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. # bowling_spec.rb
  2. require 'bowling'
  3.  
  4. describe Bowling do
  5. before(:each) do
  6. @bowling = Bowling.new
  7. end
  8.  
  9. it "should score 0 for gutter game" do
  10. 20.times { @bowling.hit(0) }
  11. @bowling.score.should == 0
  12. end
  13. end
Add Comment
Please, Sign In to add comment