summaryrefslogtreecommitdiff
path: root/spec/models/incident_management/issuable_escalation_status_spec.rb
blob: f3e7b90cf3ce495e953fd13d8f170d00d3047af1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe IncidentManagement::IssuableEscalationStatus do
  let_it_be(:issue) { create(:issue) }

  subject(:escalation_status) { build(:incident_management_issuable_escalation_status, issue: issue) }

  it { is_expected.to be_valid }

  describe 'associations' do
    it { is_expected.to belong_to(:issue) }
  end

  describe 'validatons' do
    it { is_expected.to validate_presence_of(:issue) }
    it { is_expected.to validate_uniqueness_of(:issue) }
  end

  it_behaves_like 'a model including Escalatable'
end