summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/core/failed_spec.rb
blob: 41ce63b3a6f56e61792b65055d16c82a6ffc6b1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'spec_helper'

describe Gitlab::Ci::Status::Core::Failed do
  subject { described_class.new(double('subject')) }

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

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

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

  describe '#title' do
    it { expect(subject.title).to eq 'Double: failed' }
  end
end