2020-06-12 08:08:56 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-26 05:08:59 -04:00
|
|
|
RSpec.describe AlertManagement::AlertUserMention do
|
2020-06-12 08:08:56 -04:00
|
|
|
describe 'associations' do
|
|
|
|
it { is_expected.to belong_to(:alert_management_alert) }
|
|
|
|
it { is_expected.to belong_to(:note) }
|
|
|
|
end
|
|
|
|
|
|
|
|
it_behaves_like 'has user mentions'
|
|
|
|
end
|