标签: ruby rspec mocking
在any_instance_of块内,例如:
any_instance_of Tenancy do |tenancy| mock(Tenancy).update_checkout_booking.twice end
我如何测试它可以运行3次以上?使用.never,.once和.twice都可以正常工作。
但是要测试三遍,我尝试了.thrice,.exactly(3).times和没有乐趣。