标签: ruby rspec tdd rspec3
我试图翻译一些旧的rspec测试(v 2.1)以使用最新版本的rspec(3.1)并遇到这条线的麻烦......
v3.0语法中subject.should_receive(:damage).with(10)会是什么?
subject.should_receive(:damage).with(10)
答案 0 :(得分:1)
新语法如下:
expect(subject).to receive(:damage).with(10)
有关详细信息,请参阅this article