Created
August 1, 2013 06:38
-
-
Save cmattson/6128936 to your computer and use it in GitHub Desktop.
Tasty pies made in a factory.
This file contains hidden or 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
# Here we have a default peach pie | |
FactoryGirl.build(:pie) | |
# ...or an apple pie | |
FactoryGirl.build(:pie, :apple) |
This file contains hidden or 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 :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