Skip to content

Instantly share code, notes, and snippets.

@rubyandcoffee
Created August 24, 2016 13:50
Show Gist options
  • Save rubyandcoffee/569ebdbe24857d1a2e573a11cb58785e to your computer and use it in GitHub Desktop.
Save rubyandcoffee/569ebdbe24857d1a2e573a11cb58785e to your computer and use it in GitHub Desktop.
Factory for contact with Faker
require 'faker'
FactoryGirl.define do
factory :contact do |f|
f.first_name { Faker::Name.first_name }
f.last_name { Faker::Name.last_name }
f.email { Faker::Internet.email }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment