在我的 Rails 控制器中,我正在创建同一个模型类的多个实例。我想添加一些 RSpec 期望,以便我可以测试它是否使用正确的参数创建了正确的数字。所以,这就是我的规范中的内容:
Bandmate.should_receive(:create).with(:band_id => @band.id, :user_id => @user.id, :position_id => 1, :is_leader => true) Bandmate.should_receive(:create).with(:band_id => @band.id, :user_id => "2222", :position_id => 2) Bandmate.should_receive(:create).with(:band_id => @band.id, :user_id => "3333", :position_id => 3) Bandmate.should_receive(:create).with(:band_id => @band.id, :user_id => "4444", :position_id => 4)
这会引起问题,因为似乎 Bandmate 类只能设置 1 个“should_receive”期望值。因此,当我运行示例时,出现以下错误:
Spec::Mocks::MockExpectationError 中的“BandsController 应在创建时创建所有乐队成员” 模拟 'Class' 预期:使用 ({:band_id=>1014, :user_id=>999, :position_id=>1, :is_leader=>true}) 创建但使用 ({:band_id=>1014, :user_id= >"2222", :position_id=>"2"})
这些是第二次调用 create 的正确参数,但 RSpec 正在针对错误的参数进行测试。
有谁知道我如何设置我的 should_receive 期望以允许多个不同的调用?