26 lines
673 B
Ruby
Executable File
26 lines
673 B
Ruby
Executable File
# == Schema Information
|
|
#
|
|
# Table name: agent_bot_inboxes
|
|
#
|
|
# id :bigint not null, primary key
|
|
# status :integer default("active")
|
|
# created_at :datetime not null
|
|
# updated_at :datetime not null
|
|
# account_id :integer
|
|
# agent_bot_id :integer
|
|
# inbox_id :integer
|
|
#
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe AgentBotInbox do
|
|
describe 'validations' do
|
|
it { is_expected.to validate_presence_of(:inbox_id) }
|
|
it { is_expected.to validate_presence_of(:agent_bot_id) }
|
|
end
|
|
|
|
describe 'associations' do
|
|
it { is_expected.to belong_to(:agent_bot) }
|
|
it { is_expected.to belong_to(:inbox) }
|
|
end
|
|
end
|