gitlab-org--gitlab-foss/spec/lib/gitlab/ci/status/created_spec.rb

28 lines
567 B
Ruby
Raw Normal View History

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 'icon_status_created' }
end
2017-03-10 10:49:52 -05:00
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