debian-mirror-gitlab/spec/lib/gitlab/ci/status/pending_spec.rb

30 lines
593 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
require 'spec_helper'
describe Gitlab::Ci::Status::Pending do
subject do
described_class.new(double('subject'), double('user'))
end
describe '#text' do
it { expect(subject.text).to eq 'pending' }
end
describe '#label' do
it { expect(subject.label).to eq 'pending' }
end
describe '#icon' do
2018-03-17 18:26:18 +05:30
it { expect(subject.icon).to eq 'status_pending' }
2017-08-17 22:00:37 +05:30
end
describe '#favicon' do
it { expect(subject.favicon).to eq 'favicon_status_pending' }
end
describe '#group' do
it { expect(subject.group).to eq 'pending' }
end
end