Add specs for model facebook_page (#346)

This commit is contained in:
Karthik Sivadas
2019-12-05 13:20:04 +05:30
committed by Pranav Raj S
parent ff5c26a388
commit 3a1c0aef07
5 changed files with 33 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
# 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