Skip to content

Instantly share code, notes, and snippets.

@bangline
Created October 14, 2012 21:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bangline/3889910 to your computer and use it in GitHub Desktop.
Save bangline/3889910 to your computer and use it in GitHub Desktop.
Non-invariant example
describe "taking one down" do
Given(:beers_on_the_wall){ BeersOnTheWall.new(beer_count) }
When{ beers_on_the_wall.take_one_down }
context "while we still have beers" do
Then{ expect(beers_on_the_wall.count).to eql (beer_count - 1) }
end
context "when all the beers have gone" do
Given(:beers_on_the_wall){ BeersOnTheWall.new(1) }
# or Given{ beers_on_the_wall.beers = 1 }
Then{ expect(beers_on_the_wall.count).to eql "no more bottles of beers on the wall"}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment