Skip to content

Instantly share code, notes, and snippets.

@leemcalilly
Created May 20, 2013 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save leemcalilly/ac401e08a45ebb7b884f to your computer and use it in GitHub Desktop.
Save leemcalilly/ac401e08a45ebb7b884f to your computer and use it in GitHub Desktop.
FactoryGirl.define do
factory :user do
sequence(:email) { |n| "person_#{n}@example.com"}
password "password"
password_confirmation "password"
end
factory :role do
role = 'admin'
:user
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment