Chatwoot/spec/factories/channel/facebook_pages.rb
Pranav Raj S d8d4deea2f Remove unnecessary slash in curl command (#349)
* Remove unnecessary slash in curl command

* bundle update

* Fix rubocop errors
2019-12-06 16:50:06 +05:30

11 lines
294 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 }
account
end
end