1

我的测试用例如下:

    petition1 = Petition.create
    petition2 = Petition.create

    petition1.should_receive(:test_method).with(7).and_return(50.0)
    petition2.should_receive(:test_method).with(7).and_return(25.0)

    petition1.test_method(7) # => 50.0
    Petition.first.test_method(7) # => 0.0

    petition2.test_method(7) # => 25.0
    Petition.last.test_method(7) # => 0.0

如何为直接从数据库检索的记录存根方法调用?

我在我的单元测试中迭代记录,我需要对某些记录进行方法调用以返回特定的响应。

4

1 回答 1

0

这里的问题是(正如您所发现的)调用 find 方法将创建Petition. 为了解决这个问题,您可以自己存根 find 方法并返回您想要的对象:

let(:petition1) { Petition.create }
let(:petition2) { Petition.create }

it "does what I want" do
  Petition.stub(:first) { petition1 }
  Petition.stub(:last) { petition2 }
  petition1.should_receive(:test_method).with(7).and_return(50.0)
  petition2.should_receive(:test_method).with(7).and_return(25.0)
  # test code
end

不幸的是,这将规范与您正在测试的任何方法的实现结合在一起。如果您使用其他方式获取请愿书,这可能会中断。一种更具弹性的方法可能会改用工厂,并创建具有适当属性的请愿书。

于 2013-02-22T04:54:14.260 回答