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
|
2019-03-27 09:01:36 +00:00
|
|
|
name { 'facebook' }
|
2018-12-12 08:57:30 +00:00
|
|
|
credentials { { application_id: 123, application_secret: 123 } }
|
|
|
|
end
|
|
|
|
|
|
|
|
factory :twitter_credential do
|
2019-03-27 09:01:36 +00:00
|
|
|
name { 'twitter' }
|
2018-12-12 08:57:30 +00:00
|
|
|
|
|
|
|
credentials do
|
2019-12-04 06:37:30 +00:00
|
|
|
{ consumer_key: '123',
|
|
|
|
consumer_secret: '123',
|
|
|
|
oauth_token: '123',
|
|
|
|
oauth_token_secret: '123' }
|
2018-12-12 08:57:30 +00:00
|
|
|
end
|
|
|
|
end
|
2018-09-26 09:51:53 +00:00
|
|
|
end
|
|
|
|
end
|