Skip to content

Instantly share code, notes, and snippets.

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 lucashungaro/110589 to your computer and use it in GitHub Desktop.
Save lucashungaro/110589 to your computer and use it in GitHub Desktop.
context "a movie shelf" do
setup { @shelf = MovieShelf.new }
should "let the user store a movie" do
juno = Movie.new("Juno")
shelf.store juno
assert shelf.contains?(juno)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment