Enhancement: Move reporting metrics to postgres (#606)

This commit is contained in:
Subin T P
2020-03-18 16:53:35 +05:30
committed by GitHub
parent f69eb7e542
commit 8f6f07177d
27 changed files with 575 additions and 2 deletions

16
spec/models/event_spec.rb Normal file
View 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