我正在尝试为inherited_resources控制器编写规范。我决定使用rspec的mock_model模拟所有与数据库的集成。不幸的是,我不能为创建和更新操作编写规范,因为我得到以下错误:https://gist.github.com/936947有人能帮我解决这个问题吗?
我在使用flexmock时遇到了同样的问题。
的原因是没有使用update_attributes
方法进行路由决策。它检查resource.errors
是否为空。
因此,为了使其正确响应,我们还需要模拟errors
方法。
下面是lib/inherited_resources/base_helpers.rb
中的相关代码@ 248行 def respond_with_dual_blocks(object, options, &block) #:nodoc:
args = (with_chain(object) << options)
case block.try(:arity)
when 2
respond_with(*args) do |responder|
blank_slate = InheritedResources::BlankSlate.new
if object.errors.empty?
block.call(responder, blank_slate)
else
block.call(blank_slate, responder)
end
end
when 1
respond_with(*args, &block)
else
options[:location] = block.call if block
respond_with(*args)
end
end
失败消息是关于无法从控制器内部访问命名路由,所以我不确定这与mock_model有任何关系。你用真实的模型试过同样的例子吗?