2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe Gitlab::Ci::Status::Scheduled do
|
2018-12-05 23:21:45 +05:30
|
|
|
subject do
|
|
|
|
described_class.new(double('subject'), double('user'))
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#text' do
|
2018-12-13 13:39:08 +05:30
|
|
|
it { expect(subject.text).to eq 'delayed' }
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe '#label' do
|
2018-12-13 13:39:08 +05:30
|
|
|
it { expect(subject.label).to eq 'delayed' }
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
describe '#icon' do
|
|
|
|
it { expect(subject.icon).to eq 'status_scheduled' }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#favicon' do
|
|
|
|
it { expect(subject.favicon).to eq 'favicon_status_scheduled' }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#group' do
|
|
|
|
it { expect(subject.group).to eq 'scheduled' }
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
describe '#details_path' do
|
|
|
|
it { expect(subject.details_path).to be_nil }
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|