2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2018-09-03 20:44:39 +02:00
|
|
|
FactoryBot.define do
|
2016-04-30 17:56:23 +02:00
|
|
|
factory :contact do
|
|
|
|
|
social_tag { SecureRandom.urlsafe_base64(4) }
|
|
|
|
|
email { Faker::Internet.email }
|
|
|
|
|
sponsor_email { Faker::Internet.email }
|
2022-02-11 16:55:39 +01:00
|
|
|
facebook { Faker::Internet.url(host: 'facebook.com') }
|
|
|
|
|
googleplus { Faker::Internet.url(host: 'plus.google.com') }
|
|
|
|
|
twitter { Faker::Internet.url(host: 'twitter.com') }
|
|
|
|
|
instagram { Faker::Internet.url(host: 'instagram.com') }
|
2016-04-30 17:56:23 +02:00
|
|
|
|
|
|
|
|
conference
|
|
|
|
|
end
|
|
|
|
|
end
|