Skip to content

Instantly share code, notes, and snippets.

@ltw
Created January 25, 2012 00:22
Show Gist options
  • Save ltw/1673743 to your computer and use it in GitHub Desktop.
Save ltw/1673743 to your computer and use it in GitHub Desktop.
Using different factory girl techniques to build specific factories
FactoryGirl.define do
factory :contact do
name 'Nigel Weiner'
factory :admin_contact do
admin true
end
end
end
FactoryGirl.define do
factory :contact do
trait :admin do
admin true
name { "Admin #{name}" }
end
name 'Nigel Weiner'
factory :admin_contact do
admin
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment