Chatwoot/spec/models/channel/facebook_page_spec.rb

22 lines
614 B
Ruby
Raw Normal View History

# frozen_string_literal: true
require 'rails_helper'
require Rails.root.join 'spec/models/concerns/reauthorizable_shared.rb'
RSpec.describe Channel::FacebookPage do
let(:channel) { 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) }
describe 'concerns' do
it_behaves_like 'reauthorizable'
end
it 'has a valid name' do
expect(channel.name).to eq('Facebook')
end
end