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

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

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

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

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