summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/status/core/created_spec.rb
blob: 5a6d7523e835abb436e0cd60d27d5d317ec48b51 (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::Created do
  subject { described_class.new(double('subject')) }

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

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

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