2019-07-07 11:18:12 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Gitlab::Ci::Status::Preparing do
|
2019-07-07 11:18:12 +05:30
|
|
|
subject do
|
|
|
|
described_class.new(double('subject'), nil)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#text' do
|
|
|
|
it { expect(subject.text).to eq 'preparing' }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#label' do
|
|
|
|
it { expect(subject.label).to eq 'preparing' }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#icon' do
|
2019-12-21 20:55:43 +05:30
|
|
|
it { expect(subject.icon).to eq 'status_preparing' }
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe '#favicon' do
|
2019-12-21 20:55:43 +05:30
|
|
|
it { expect(subject.favicon).to eq 'favicon_status_preparing' }
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe '#group' do
|
|
|
|
it { expect(subject.group).to eq 'preparing' }
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
describe '#details_path' do
|
|
|
|
it { expect(subject.details_path).to be_nil }
|
|
|
|
end
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|