2018-09-26 09:51:53 +00:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :external_credential do
|
2018-12-12 08:57:30 +00:00
|
|
|
factory :facebook_credential do
|
|
|
|
name 'facebook'
|
|
|
|
credentials { { application_id: 123, application_secret: 123 } }
|
|
|
|
end
|
|
|
|
|
|
|
|
factory :twitter_credential do
|
|
|
|
name 'twitter'
|
|
|
|
|
|
|
|
credentials do
|
|
|
|
{ consumer_key: 123,
|
|
|
|
consumer_secret: 123,
|
|
|
|
oauth_token: 123,
|
|
|
|
oauth_token_secret: 123 }
|
|
|
|
end
|
|
|
|
end
|
2018-09-26 09:51:53 +00:00
|
|
|
end
|
|
|
|
end
|