Skip to content

Instantly share code, notes, and snippets.

@westoque
Created December 8, 2011 13:39
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 westoque/1447016 to your computer and use it in GitHub Desktop.
Save westoque/1447016 to your computer and use it in GitHub Desktop.
black box controller spec
describe MessagesController do
describe "POST create" do
it "saves the message" do
lambda {
post :create, :message => { "text" => "a quick brown fox" }
}.should change(Message, :count).by(1)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment