ruby-on-rails – 如何使用RSpec测试ActiveRecord回调?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 如何使用RSpec测试ActiveRecord回调?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何测试以下示例?
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,但您也可以使用灯具或模拟器.

原文链接:https://www.f2er.com/ruby/273433.html

猜你在找的Ruby相关文章