Enhancement: Move reporting metrics to postgres (#606)
This commit is contained in:
@@ -17,4 +17,5 @@ RSpec.describe Account do
|
||||
it { is_expected.to have_one(:subscription).dependent(:destroy) }
|
||||
it { is_expected.to have_many(:webhooks).dependent(:destroy) }
|
||||
it { is_expected.to have_many(:notification_settings).dependent(:destroy) }
|
||||
it { is_expected.to have_many(:events) }
|
||||
end
|
||||
|
||||
16
spec/models/event_spec.rb
Normal file
16
spec/models/event_spec.rb
Normal file
@@ -0,0 +1,16 @@
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe Event, type: :model 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
|
||||
@@ -27,6 +27,8 @@ RSpec.describe Inbox do
|
||||
it { is_expected.to have_one(:agent_bot_inbox) }
|
||||
|
||||
it { is_expected.to have_many(:webhooks).dependent(:destroy) }
|
||||
|
||||
it { is_expected.to have_many(:events) }
|
||||
end
|
||||
|
||||
describe '#add_member' do
|
||||
|
||||
@@ -18,6 +18,7 @@ RSpec.describe User do
|
||||
it { is_expected.to have_many(:notification_settings).dependent(:destroy) }
|
||||
it { is_expected.to have_many(:assigned_inboxes).through(:inbox_members) }
|
||||
it { is_expected.to have_many(:messages) }
|
||||
it { is_expected.to have_many(:events) }
|
||||
end
|
||||
|
||||
describe 'pubsub_token' do
|
||||
|
||||
Reference in New Issue
Block a user