Restructure omni services and add Chatwoot research snapshot
This commit is contained in:
16
research/chatwoot/spec/models/reporting_event_spec.rb
Normal file
16
research/chatwoot/spec/models/reporting_event_spec.rb
Normal file
@@ -0,0 +1,16 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe ReportingEvent do
|
||||
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
|
||||
Reference in New Issue
Block a user