Skip to content

Instantly share code, notes, and snippets.

@bruschill
Created February 26, 2013 21:44
Show Gist options
  • Save bruschill/5042514 to your computer and use it in GitHub Desktop.
Save bruschill/5042514 to your computer and use it in GitHub Desktop.
factory :user_with_tasks, :parent => :base_user do |user|
user.after(:create) do |u|
u.tasks = FactoryGirl.create(:task, :user => u)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment