Skip to content

Instantly share code, notes, and snippets.

@oguzcanhuner
Created January 21, 2013 13:43
Show Gist options
  • Save oguzcanhuner/4586157 to your computer and use it in GitHub Desktop.
Save oguzcanhuner/4586157 to your computer and use it in GitHub Desktop.
describe Squirrel do
let(:squirrel){Squirrel.new}
it "becomes full after eating nuts" do
expect {squirrel.eat!}.to change{squirrel.hungry?}.from(true).to(false)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment