12 lines
210 B
Ruby
12 lines
210 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
FactoryBot.define do
|
||
|
factory :user_omniauth do
|
||
|
association :user
|
||
|
|
||
|
provider { 'github' }
|
||
|
remote_id { SecureRandom.hex }
|
||
|
email { Faker::Internet.email }
|
||
|
end
|
||
|
end
|