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}
。这可能吗?
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}
。这可能吗?