maixhashi / plotforge

0 stars 0 forks source link

Test_2024.09.21.05.13_model spec test(Keywordモデル)_#199 #199

Closed maixhashi closed 1 month ago

maixhashi commented 1 month ago

実現したいこと

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

class Keyword < ApplicationRecord
  ## Validation
  validates :content, presence: true
  validates :content, uniqueness: true

  ## Association
  has_many :shuffled_overview_keywords
  has_many :shuffled_overviews, through: :shuffled_overview_keywords
end

変更する事項

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