#実現したいこと
RSpecのテストで親モデルが削除された時その親モデルに紐づく子モデルが削除されるかというテストを書いています。
1対多のテストは無事にパスするのですが、多対多のテストだとうまくいきません。
consoleで試すとちゃんと削除されてるんですがテストは通りません。
わかる方いましたらぜひ知恵を貸していただきたいです。
よろしくお願いしますm(__)m
#エラー
expected `Relationship.count` to have changed by -1, but was changed by 0
user_rspec.rb
require 'rails_helper' RSpec.describe User, type: :model do let(:user) { FactoryBot.create(:user) } let(:other_user) { FactoryBot.create(:user, email: "tanaka@gmail.com",name: "田中")} describe '関連テーブル削除テスト' do it 'userを削除するとuserのpostが削除される' do user.posts.create(content: "RSpec") expect{ user.destroy }.to change{ Post.count }.by(-1) end it 'userを削除するとuserのhabitが削除される' do user.habits.create(task: "筋トレ", frequency: 3) expect{ user.destroy }.to change{ Habit.count }.by(-1) end it 'userを削除するとuserのrecordが削除される' do user.records.create(level: 10, date: Date.current) expect{ user.destroy }.to change{ Record.count }.by(-1) end #エラーになるテスト↓ it 'userを削除するとuserと関連するrelationshipが削除される' do user.active_relationships.create(followed_id: other_user) expect{ user.destroy }.to change{ Relationship.count }.by(-1) end end end
user.rb
class User < ApplicationRecord has_many :habits, dependent: :destroy has_many :records, dependent: :destroy has_many :posts, dependent: :destroy has_many :active_relationships, class_name: "Relationship", foreign_key: "follower_id", dependent: :destroy
#バージョン
Rails 6.0.3.4
ruby 2.6.3p62
RSpec 3.10
user.active_relationships.create(followed_id: other_user) で無事に作成されていますか?
コメントありがとうございます!
binding.pryで確認した所,followed_idがnilで作成されてませんでした
ですがother_userにはちゃんとuserインスタンスが入っていました
user.active_relationships.create(followed_id: other_user.id) とするとどうでしょうか。
通りました!!! i ありがとうございます!!
consoleではuser.active_relationships.create(followed_id: other_user)で作成出来てもテストではidを明示的に記述しないといけないのは何故なんでしょうか?
差し支え無ければ聞いておきたいですm(__)m
consoleでも followed_id: other_user はダメだと思います。
たぶん、followed: other_user と入力したのではないかと。
〇 followed_id: other_user.id
〇 followed: other_user
× followed_id: other_user
× followed: other_user.id
consoleで試してみるとおっしゃる通りでしたm(__)m
ご親切にありがとうございましたm(__)m
こんにちは! 昨日はありがとうございましたm(__)m
こちらは自己解決としてしまってよろしいんでしょうか?
はい、問題ありません
回答1件
あなたの回答
tips
プレビュー