Skip to content

Instantly share code, notes, and snippets.

@groony
Created July 3, 2018 07:57
Show Gist options
  • Save groony/8b42c71d71df8ec1dc71ab4b2ac8d3a9 to your computer and use it in GitHub Desktop.
Save groony/8b42c71d71df8ec1dc71ab4b2ac8d3a9 to your computer and use it in GitHub Desktop.
factory_cascade_ex
factory :account do
end
factory :user do
account
end
factory :project do
account
user
end
factory :task do
account
project
user
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment