Guest User

Untitled

a guest
Jan 23rd, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. it "should set the count back to 0 when reset" do
  2. 10.times { @counter.increment }
  3. @counter.count.should == 10
  4. @counter.reset
  5. @counter.count.should == 0
  6. end
Add Comment
Please, Sign In to add comment