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

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

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

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

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

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