summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/manual_spec.rb
blob: 9b2dffe53d0d0c040f188fbee21b2232d08e85b1 (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
require 'spec_helper'

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

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

  describe '#label' do
    it { expect(subject.label).to eq 'manual action' }
  end

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

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

  describe '#illustration' do
    it { expect(subject.illustration).to include(:image, :size, :title, :content) }
  end

  describe '#group' do
    it { expect(subject.group).to eq 'manual' }
  end
end