情况:我想存根一个辅助方法,这样我就可以调用一个包装它的方法并取回存根的响应。
代码设置如下:
class Thing
def self.method_one(foo)
self.method_two(foo, 'some random string')
end
def self.method_two(foo, bar)
self.method_three(foo, bar, 'no meaning')
end
def self.method_three(foo, bar, baz)
"#{foo} is #{bar} with #{baz}"
end
end
我试图模拟.method_three
,以便我可以调用.method_one
并让它最终调用.method_three
'double 而不是真正的交易:
it "uses the mock for .method_three" do
response_double = 'This is a different string'
thing = class_double("Thing", :method_three => response_double).as_stubbed_const
response = thing.method_one('Hi')
expect(response).to eq(response_double)
end
我得到的错误:
RSpec::Mocks::MockExpectationError: #<ClassDouble(Thing) (anonymous)> received unexpected message :method_one with ("Hi")
我正在尝试做的事情可能吗?感觉好像我错过了一个明显的步骤,但尽管我尽了最大的努力,我还是找不到这样的例子或提出任何类似问题的问题。
(注意:如果重要的话,这不是 Rails 项目。)