Skip to content

Instantly share code, notes, and snippets.

@gschorkopf
Created December 6, 2013 21:13
Show Gist options
  • Save gschorkopf/7832177 to your computer and use it in GitHub Desktop.
Save gschorkopf/7832177 to your computer and use it in GitHub Desktop.
Sample FactoryGirl admin/user creation
FactoryGirl.define do
factory :user do
first_name "Geoff"
last_name "S"
role 'standard'
factory :admin do
role 'admin'
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment