我正在使用 public_activity gem 在我的应用程序中生成活动提要,在我的模型中,我正在使用设计的 current_user 来识别活动的所有者。
class Question < ActiveRecord::Base
...
include PublicActivity::Model
tracked owner: ->(controller, model) { controller.current_user }
...
end
我意识到在模型中引用 current_user 不是常态,但这是他们推荐的方式。
这在应用程序中运行良好,但我的 Rspec 测试遇到了问题,我收到以下错误:
Failure/Error: expect(create(:question)).to be_valid
NoMethodError:
undefined method `current_user' for nil:NilClass
# ./app/models/question.rb:8:in `block in <class:Question>'
# ./spec/models/question_spec.rb:7:in `block (3 levels) in <top (required)>'
测试本身很典型:
describe "Factory" do
it "has a valid factory" do
expect(create(:question)).to be_valid
end
end
这是我的工厂:
FactoryGirl.define do
factory :question do
title { Faker::Lorem.characters(30) }
body { Faker::Lorem.characters(150) }
user_id { 1 }
tag_list { "test, respec" }
end
end
如何让我的模型中的这个 current_user 方法在我的测试中工作?