标签: ruby rspec minitest
在Rspec中可以做到
expect(foo).to receive(:bark)
MiniTest中的等价物是什么?
(assert_send似乎没有不同的行为)
assert_send
答案 0 :(得分:0)
看来这个问题已在这里得到解答:How to assert certain method is called with Ruby minitest framework?
简而言之 - 你应该使用模拟来检查方法被调用。