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

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

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

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

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