Created
October 14, 2012 21:39
-
-
Save bangline/3889900 to your computer and use it in GitHub Desktop.
When Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
context "while we still have beers" do | |
Given(:beers_on_the_wall){ BeersOnTheWall.new(beer_count) } | |
When{ beers_on_the_wall.take_one_down } | |
Then{ expect(beers_on_the_wall.count).to eql (beer_count - 1) } | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment