3
allow_any_instance_of(ServicesController).to receive(A::B.auth(a, b, c, d)).and_return({value: true])

我无法让我的 rspec 测试模拟方法A::B.auth

使用 rspec 3 和 rails 3.2。测试类型:控制器。

我希望模拟返回一个简单的哈希:{value: true}。这可能吗?

4

1 回答 1

4
allow(A::B).to receive(:auth).and_return({value: true})
于 2014-07-02T15:00:48.603 回答