2017-08-17 22:00:37 +05:30
|
|
|
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
|
2018-03-17 18:26:18 +05:30
|
|
|
it { expect(subject.icon).to eq 'status_created' }
|
2017-08-17 22:00:37 +05:30
|
|
|
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
|