Welcome to mirror list, hosted at ThFree Co, Russian Federation.

created_spec.rb « status « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 157302c65a845c248fa593038050cfcdf113100f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'spec_helper'

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

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

  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