maixhashi / plotforge

0 stars 0 forks source link

Test_2024.09.21.06.22_model spec test(ShuffledOverviewKeywordモデル)_#201 #201

Closed maixhashi closed 3 days ago

maixhashi commented 3 days ago

実現したいこと

ShuffledOverviewKeywordモデルのモデルスペックテストを作成する

class ShuffledOverviewKeyword < ApplicationRecord
  ## validation
  validates :keyword_id, uniqueness: { scope: :shuffled_overview_id, message: "has already been added to this shuffled overview" }
  # 特定の ShuffledOverview に対して Keyword が一意である

  ## association
  belongs_to :shuffled_overview
  belongs_to :keyword
end

変更する事項

ShuffledOverviewKeywordモデルの下記事項についてのモデルスペックテストを作成する