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

build_examples.rb « issuable_escalation_statuses « incident_management « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 050fdc3fff766a8f0b4ee634f990b2404e904319 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

RSpec.shared_examples 'initializes new escalation status with expected attributes' do |attributes = {}|
  let(:expected_attributes) { attributes }

  specify do
    expect { execute }.to change { incident.escalation_status }
      .from(nil)
      .to(instance_of(::IncidentManagement::IssuableEscalationStatus))

    expect(incident.escalation_status).to have_attributes(
      id: nil,
      issue_id: incident.id,
      policy_id: nil,
      escalations_started_at: nil,
      status_event: nil,
      **expected_attributes
    )
  end
end