2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2017-10-21 02:38:41 +05:30
|
|
|
# Read about factories at https://github.com/thoughtbot/factory_girl
|
|
|
|
|
|
|
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :openid do
|
|
|
|
|
provider { Faker::Internet.domain_word }
|
|
|
|
|
email { Faker::Internet.email }
|
|
|
|
|
uid { SecureRandom.hex }
|
|
|
|
|
user
|
|
|
|
|
end
|
|
|
|
|
end
|