我的控制器中有以下操作:
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
但是,存根似乎不起作用,因为保存操作始终成功。 我做错了什么?
谢谢
试试这个:
Vin.any_instance.stub(:save).and_return(false)