Last active
October 30, 2017 08:52
-
-
Save naoty/4701800 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FactoryGirl.define do | |
factory :user do | |
after(:create) do |user| | |
FactoryGirl.create_list(:task, 10, user_id: user.id) | |
end | |
end | |
factory :task do | |
trait :with_user do | |
user | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
循環しそうなので、関連もちたい場合は
trait
を使うようにすればいけそう