Skip to content

Instantly share code, notes, and snippets.

@orangeeli
Last active July 15, 2016 16:46
Show Gist options
  • Save orangeeli/d6392fbe69f74df212792a5e5615e446 to your computer and use it in GitHub Desktop.
Save orangeeli/d6392fbe69f74df212792a5e5615e446 to your computer and use it in GitHub Desktop.
A factory girl factory example
FactoryGirl.define do
factory :gorilla do
first_name 'Björn'
middle_name { Faker::Name.name }
last_name { Faker::Name.last_name }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment