summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/stage/common_spec.rb
blob: f3259c6f23e0738cbba6c14f70a179065b1f0dd5 (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
26
require 'spec_helper'

describe Gitlab::Ci::Status::Stage::Common do
  let(:pipeline) { create(:ci_empty_pipeline) }
  let(:stage) { build(:ci_stage, pipeline: pipeline, name: 'test') }

  subject do
    Class.new(Gitlab::Ci::Status::Core)
      .new(stage).extend(described_class)
  end

  it 'does not have action' do
    expect(subject).not_to have_action
  end

  it 'has details' do
    expect(subject).to have_details
  end

  it 'links to the pipeline details page' do
    expect(subject.details_path)
      .to include "pipelines/#{pipeline.id}"
    expect(subject.details_path)
      .to include "##{stage.name}"
  end
end