11
5

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 3 years have passed since last update.

FactoryBotのtransientとは

Posted at

transientとは

作成時に挙動を変更するためのフラグや追加データとして利用するのが一般的。

実際に作成するデータと直接関係無い新しいattributeを定義する機能。

そこで定義されたものは実際のmodelにはセットされずattributes_forでも出力されない。

使用例

transientは各attributeの値にも利用でき、callbackでも利用可能。

FactoryBot.define do
  factory :article do
    sequence(:title) { |n| "title-#{n}" }
    sequence(:slug) { |n| "slug-#{n}" }
    category
  end

  trait :with_author do
    transient do
      sequence(:author_name) { |n| "test_author_name_#{n}"}
      sequence(:tag_slug) { |n| "test_author_slug_#{n}"}
    end

    #build直後に自由にインスタンスを修正することができる。コールバック。
    after(:build) do |article, evaluator|
      article.author = build(:author, name: evaluator.author_name, slug: evaluator.tag_slug)
    end
  end

after_buildのブロック第2引数evaluatorを渡すことで、transientブロック内の変数にアクセスできる。

参考記事

FactoryGirlのtransientとtraitを活用する
FactoryBot(旧FactoryGirl)で関連データを同時に生成する方法いろいろ

11
5
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
11
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?