ruby-on-rails – 如何测试ActiveRecord创建块内的行为?
发布时间:2020-12-17 02:03:12 所属栏目:百科 来源:网络整理
导读:如何使用rspec测试这样的代码? Foo.create! do |foo| foo.description = "thing"end 我不想测试创建的对象 – 我想测试是否使用正确的对象调用了正确的方法.相当于测试这个: Foo.create!(description: "thing") 有了这个: Foo.should_receive(:create!).w
如何使用rspec测试这样的代码?
Foo.create! do |foo| foo.description = "thing" end 我不想测试创建的对象 – 我想测试是否使用正确的对象调用了正确的方法.相当于测试这个: Foo.create!(description: "thing") 有了这个: Foo.should_receive(:create!).with(description: "thing") 解决方法
这就是你要追求的吗?
it "sets the description" do f = double Foo.should_receive(:create!).and_yield(f) f.should_receive(:description=).with("thing") Something.method_to_test end (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |