12 lines
304 B
Ruby
12 lines
304 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :channel_facebook_page, class: 'Channel::FacebookPage' do
|
|
name { Faker::Name.name }
|
|
page_access_token { SecureRandom.uuid }
|
|
user_access_token { SecureRandom.uuid }
|
|
page_id { SecureRandom.uuid }
|
|
inbox
|
|
account
|
|
end
|
|
end
|