summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/waiting_for_resource_spec.rb
blob: de18198c6c240ae3c68c3cc5930f5452d25e9050 (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Gitlab::Ci::Status::WaitingForResource do
  subject do
    described_class.new(double('subject'), double('user'))
  end

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

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

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

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

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