2019-12-05 07:50:04 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
2019-12-06 11:20:06 +00:00
|
|
|
factory :channel_facebook_page, class: 'Channel::FacebookPage' do
|
2019-12-05 07:50:04 +00:00
|
|
|
page_access_token { SecureRandom.uuid }
|
|
|
|
user_access_token { SecureRandom.uuid }
|
|
|
|
page_id { SecureRandom.uuid }
|
2020-01-07 17:29:17 +00:00
|
|
|
inbox
|
2019-12-05 07:50:04 +00:00
|
|
|
account
|
|
|
|
end
|
|
|
|
end
|