Welcome to mirror list, hosted at ThFree Co, Russian Federation.

alert_assignee_spec.rb « alert_management « models « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 647195380b37c0ab6662218fbb537f9944bc9a27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe AlertManagement::AlertAssignee do
  describe 'associations' do
    it { is_expected.to belong_to(:alert) }

    it do
      is_expected.to belong_to(:assignee).class_name('User')
        .with_foreign_key(:user_id).inverse_of(:alert_assignees)
    end
  end

  describe 'validations' do
    let(:alert) { create(:alert_management_alert) }
    let(:user) { create(:user) }

    subject { alert.alert_assignees.build(assignee: user) }

    it { is_expected.to validate_presence_of(:alert) }
    it { is_expected.to validate_presence_of(:assignee) }
    it { is_expected.to validate_uniqueness_of(:assignee).scoped_to(:alert_id) }
  end
end