Rspec对一个类实例的存根期望

时间:2011-12-28 23:39:01

标签: ruby rspec

我想要以下内容:

foo.should_receive(:bar).with(an_instance_of(Bla)).....

这可能吗?

修改:根据rspec message expectations页面,我可以完全按照上面的说法进行操作。

1 个答案:

答案 0 :(得分:1)

答案是你可以完全按照我的意愿行事:

foo.should_receive(:bar).with(an_instance_of(Bla))