summaryrefslogtreecommitdiff
path: root/spec/models/alert_management/alert_user_mention_spec.rb
blob: 27c3d290dde14ae3e5907c8cd2929ca3871502dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe AlertManagement::AlertUserMention do
  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