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

waiting_for_callback_spec.rb « status « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6c833e9613756ccec81fba52ebaed19cad1e6995 (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
27
28
29
30
31
32
33
34
35
36
37
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Ci::Status::WaitingForCallback, feature_category: :deployment_management do
  subject do
    described_class.new(double, double)
  end

  describe '#text' do
    it { expect(subject.text).to eq 'Waiting' }
  end

  describe '#label' do
    it { expect(subject.label).to eq 'waiting for callback' }
  end

  describe '#icon' do
    it { expect(subject.icon).to eq 'status_pending' }
  end

  describe '#favicon' do
    it { expect(subject.favicon).to eq 'favicon_status_pending' }
  end

  describe '#group' do
    it { expect(subject.group).to eq 'waiting-for-callback' }
  end

  describe '#name' do
    it { expect(subject.name).to eq 'WAITING_FOR_CALLBACK' }
  end

  describe '#details_path' do
    it { expect(subject.details_path).to be_nil }
  end
end