0

我的控制器中有以下操作:

def create
    @user = current_user
    @vin = @user.vins.new(params[:vin])

    if @vin.save
        # waiting for implementation
        logger.debug("here we are")
    else
        redirect_to(vins_path)
    end         
end

我想用 rspec 进行测试。但是,我想取消保存操作以模拟失败:

it "should send user to vins_path if there is a problem creating the VIN" do
    @vin.stub!(:save).and_return(false)
    post 'create', :vin => { :name => "Test 1", :vin => "test" }
    response.should redirect_to(vins_path)
end

但是,存根似乎不起作用,因为保存操作总是成功的。我究竟做错了什么?

谢谢

4

1 回答 1

2

试试这个:

Vin.any_instance.stub(:save).and_return(false)
于 2013-01-28T02:31:13.960 回答