Skip to content

Instantly share code, notes, and snippets.

@westoque
Created December 8, 2011 13:32
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/1446995 to your computer and use it in GitHub Desktop.
Save westoque/1446995 to your computer and use it in GitHub Desktop.
white box controller spec
describe MessagesController do
describe "POST create" do
let(:message) { mock_model(Message).as_null_object }
before do
Message.stub(:new).and_return(message)
end
it "creates a new message" do
Message.should_receive(:new).
with("text" => "a quick brown fox")
.and_return(message)
post :create, :message => { "text" => "a quick brown fox" }
end
it "saves the message" do
message.should_receive(:save)
post :create
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment