gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 20:15:55 24 4
gpt4 key购买 nike

如何测试下面的例子?

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 ,但您也可以使用固定装置或模拟。

关于ruby-on-rails - 如何使用 RSpec 测试 ActiveRecord 回调?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2673502/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com