我正在尝试为inherited_resources控制器编写规范。我决定使用rspec的mock_model来模拟与数据库的所有集成。不幸的是我无法为创建和更新操作编写规范,因为我收到以下错误:https://gist.github.com/936947 有人可以帮我解决这个问题吗?
答案 0 :(得分:4)
我使用flexmock遇到了同样的问题。
原因是它不使用update_attributes
方法来做出路由决策。它检查resource.errors
以查看它是否为空。
为了让它正确回应,我们还需要模拟errors
方法。
以下是lib / inherited_resources / base_helpers.rb中的相关代码@line 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
答案 1 :(得分:0)
失败消息是关于无法从控制器内部访问命名路由,所以我不确定这与mock_model有什么关系。您是否尝试过使用真实模型的相同示例?