0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ポリモーフィックで実装したモデルを、Rspecでテストする方法

Posted at

自分が勘違いしてしまっていたこと

僕がFactroyBotを定義しようと思っていました。ただ、その場合Typeごとその分定義しないといけません。
なので、今回はRspecの方どのTypeのデータを作成するか設定したいと思います。

FactoryBotの中身

FactoryBot.define do
  factory :surveydo
    title { "アンケートタイトル" }
    description { "MyText" }
  end
end

必要な最低限の構成要素のみ定義するようにしました。

Rspecの方

    context "アンケートが存在する場合" do
      let!(:survey) do
        create(
          :survey,
          surveyable_type: "User",
          surveyable_id: user.id,
        )
      end
    end

としました。上記のようにletを定義しました。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?