Add specs for model facebook_page (#346)
This commit is contained in:
committed by
Pranav Raj S
parent
ff5c26a388
commit
3a1c0aef07
11
spec/factories/channel/facebook_pages.rb
Normal file
11
spec/factories/channel/facebook_pages.rb
Normal 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
|
||||
12
spec/models/channel/facebook_page_spec.rb
Normal file
12
spec/models/channel/facebook_page_spec.rb
Normal file
@@ -0,0 +1,12 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe Channel::FacebookPage do
|
||||
before { create(:channel_facebook_page) }
|
||||
|
||||
it { is_expected.to validate_presence_of(:account_id) }
|
||||
it { is_expected.to validate_uniqueness_of(:page_id).scoped_to(:account_id) }
|
||||
it { is_expected.to belong_to(:account) }
|
||||
it { is_expected.to have_one(:inbox).dependent(:destroy) }
|
||||
end
|
||||
Reference in New Issue
Block a user