以下代码按预期工作:
Object.any_instance.should_receive(:subscribe)
但是当使用新的 rspec 期望时它不起作用:
expect(Object.any_instance).to receive(:subscribe)
错误是:
expected: 1 time with any arguments
received: 0 times with any arguments
我怎样才能使这个工作与 expect() 接收?