I'm attempting the following functional test on the controller. I'm using the following

  • RSpec2
  • Rails 3
  • Shoudla
  • Mocha

Here's the test

context "POST on create should be successful" do
  before(:each) do
    Model.any_instance.expects(:save).returns(true).once
    Model.any_instance.stubs(:id).returns(1)
    post :create, :model => {}
  end

  it { should assign_to(:model).with_kind_of(Model) }
  it { should set_the_flash.to("Model was created successfully.")}
  it { should redirect_to(model_path(1))}
end

and the controller under test is

def create
  @model = Model.new(params[:model])

  if @model.save
    flash[:success] = "Model was created successfully."
  end
  respond_with @model
end

The only failing test is the third test which says that the path getting returned is "http://test.host/models" instead of "http://test.host/models/1"

When I'm running the application in the browser I am getting the correct redirection.

link|improve this question

79% accept rate
I'm leaving the issue open, I ended up working around the problem by not using the mocking behavior and just using a Factory call to get the required behavior. So if anyone can explain why the mock is incorrect, please inform. – Steve Mitcham Oct 19 '10 at 17:11
feedback

1 Answer

I think you need mock to_params too. It's use by route system

context "POST on create should be successful" do
  before(:each) do
    Model.any_instance.expects(:save).returns(true).once
    Model.any_instance.stubs(:id).returns(1)
    Model.any_instance.stubs(:to_params).returns(1)
    post :create, :model => {}
  end

  it { should assign_to(:model).with_kind_of(Model) }
  it { should set_the_flash.to("Model was created successfully.")}
  it { should redirect_to(model_path(1))}
end
link|improve this answer
I'm still getting the same result with the additional stub. I tried to override both 'to_param' and 'to_params'. I think you meant 'to_param' for the override. – Steve Mitcham Oct 18 '10 at 12:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.