Skip to content

Instantly share code, notes, and snippets.

@awongh
Created July 18, 2013 01:50
Show Gist options
  • Save awongh/6026115 to your computer and use it in GitHub Desktop.
Save awongh/6026115 to your computer and use it in GitHub Desktop.
FactoryGirl.define do
factory :candy_jar do
user_id 1
description { Faker::Lorem.paragraph 4 }
rating 0
before(:create) { |candy_jar|
candy_jar.candies.build( [FactoryGirl.attributes_for( :candies )] )
}
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment