setoya-blog

システム開発技術、データ分析関連でお勉強したことや、山奥生活を綴る、テンション低めなブログです。

ポリモーフィック関連でのフィクスチャの定義

class Player < ActiveRecord::Base
  belongs_to :playable, :polymorphic => true
end

class Video < ActiveRecord::Base
  has_many :players, :as => :playable
end

のようなポリモーフィック関連を定義しているとき、 fixtureには、以下のようにかけばよい。

# Video fixtures
video1:
  name: name1
# Player fixtures
player1:
  name: player1
  playable: video1 (Video)

いちいちFixtureのAPIを使って名前でidを検索して設定しなくてもOK。