ruby-on-rails – 如何使用RSpec测试ActiveRecord回调?
发布时间:2020-12-16 20:27:55 所属栏目:百科 来源:网络整理
导读:如何测试以下示例? class Post ActiveRecord::Base belongs_to :discussion,touch: trueend 解决方法 你可以设置一个 message expectation: it "should touch the discussion" do post = Factory.build(:post) post.discussion.should_receive(:touch) pos
如何测试以下示例?
class Post < ActiveRecord::Base belongs_to :discussion,touch: true end 解决方法
你可以设置一个
message expectation:
it "should touch the discussion" do post = Factory.build(:post) post.discussion.should_receive(:touch) post.save! end 此示例使用Factory Girl,但您也可以使用灯具或模拟器. (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |