maixhashi / plotforge

0 stars 0 forks source link

Test_2024.09.21.08.25_model spec test (Notificationモデル)_#205 #205

Closed maixhashi closed 1 month ago

maixhashi commented 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モデルの下記事項についてのモデルスペックテストを作成する