Closed maixhashi closed 1 month ago
Notificationモデルのモデルスペックテストを作成する
class Notification < ApplicationRecord default_scope -> { order(created_at: :desc) } belongs_to :shuffled_overview, optional: true belongs_to :movie, optional: true # belongs_to :comment, optional: true belongs_to :visitor, class_name: 'User', foreign_key: 'visitor_id' belongs_to :visited, class_name: 'User', foreign_key: 'visited_id' end
Notificationモデルの下記事項についてのモデルスペックテストを作成する
実現したいこと
Notificationモデルのモデルスペックテストを作成する
変更する事項
Notificationモデルの下記事項についてのモデルスペックテストを作成する