标签: ruby rspec
我想要以下内容:
foo.should_receive(:bar).with(an_instance_of(Bla)).....
这可能吗?
修改:根据rspec message expectations页面,我可以完全按照上面的说法进行操作。
答案 0 :(得分:1)
答案是你可以完全按照我的意愿行事:
foo.should_receive(:bar).with(an_instance_of(Bla))