2020-03-18 11:23:35 +00:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2022-02-28 12:46:12 +00:00
|
|
|
RSpec.describe ReportingEvent, type: :model do
|
2020-03-18 11:23:35 +00:00
|
|
|
describe 'validations' do
|
|
|
|
it { is_expected.to validate_presence_of(:account_id) }
|
|
|
|
it { is_expected.to validate_presence_of(:name) }
|
|
|
|
it { is_expected.to validate_presence_of(:value) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'associations' do
|
|
|
|
it { is_expected.to belong_to(:account) }
|
|
|
|
it { is_expected.to belong_to(:inbox).optional }
|
|
|
|
it { is_expected.to belong_to(:user).optional }
|
|
|
|
it { is_expected.to belong_to(:conversation).optional }
|
|
|
|
end
|
|
|
|
end
|