10 lines
268 B
Ruby
10 lines
268 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :channel_instagram_fb_page, class: 'Channel::FacebookPage' do
|
|
page_access_token { SecureRandom.uuid }
|
|
user_access_token { SecureRandom.uuid }
|
|
page_id { SecureRandom.uuid }
|
|
account
|
|
end
|
|
end
|