Created
August 24, 2016 13:50
-
-
Save rubyandcoffee/569ebdbe24857d1a2e573a11cb58785e to your computer and use it in GitHub Desktop.
Factory for contact with Faker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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