Rspecのコントローラー試験のエラーの意味が分からず困っています。
RubyonrailsのRspecのコントローラーに関して、
ログインユーザがイベントを登録した際の正常に動作することの試験を行っております。
その際、『.to chage(@user.events, :count).by(1)』といった記述に関して
NoMethodErrorが発生しています、原因がわからずに解決できずに困っております。
発生している問題・エラーメッセージ
Failure/Error: expect{ post :create, params: { event: event_params } }.to change(@user.events, :count).by(1) NoMethodError: undefined method `events' for #<EndUser:0x00005653df2a0b78> # ./spec/controllers/event_controller_spec.rb:72:in `block (4 levels) in <top (required)>'
該当のソースコード
spec/controllers/event_controller_spec.rb (※該当箇所抜粋) require 'rails_helper' RSpec.describe EndUser::EventsController, type: :controller do describe "#create" do context "ログインユーザの場合" do before do @user = FactoryBot.create(:end_user) end it "イベントの登録が出来ること" do event_params = FactoryBot.attributes_for(:event) sign_in @user expect{ post :create, params: { event: event_params } }.to change(@user.events, :count).by(1) end end end end
spec/factories/event.rb FactoryBot.define do factory :event do title{"テスト"} start{Time.zone.local(2019,10,28)} add_attribute(:end){Time.zone.local(2019,10,29)} fee{"2000円"} venue{"国技館"} address{"東京都"} description{"あああ"} access{"徒歩10分"} association :end_user end end
spec/factories/end_user.rb FactoryBot.define do factory :end_user do sequence(:email) { |n| "c#{n}@c" } password { "123456" } user_name { 'l' } end end
試したこと
何が原因なのか検索して調べていましたが、原因が分からない状態です。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/15 12:17