Skip to content

Instantly share code, notes, and snippets.

@cmattson
Created August 1, 2013 06:38
Show Gist options
  • Save cmattson/6128936 to your computer and use it in GitHub Desktop.
Save cmattson/6128936 to your computer and use it in GitHub Desktop.
Tasty pies made in a factory.
# Here we have a default peach pie
FactoryGirl.build(:pie)
# ...or an apple pie
FactoryGirl.build(:pie, :apple)
FactoryGirl.define do
factory :pie do
crust 'Lattice'
filling 'Peach'
topping 'Sugar'
a_la_mode true
end
trait :apple do
filling 'Apple'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment