Skip to content

Instantly share code, notes, and snippets.

@cmar
Created March 19, 2012 18:12
Show Gist options
  • Save cmar/2122297 to your computer and use it in GitHub Desktop.
Save cmar/2122297 to your computer and use it in GitHub Desktop.
FactoryGirl.define do
factory :user do
first_name "Fox"
last_name "Mulder"
sequence(:email) { |n| "fox#{n}@xfiles.com"}
password "XXXXX111111"
factory :admin do |admin|
admin.after_create { |admin| admin.roles << Factory(:admin_role) }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment