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

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

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

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

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

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

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