2019-07-25 01:21:37 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-03-06 08:08:55 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-24 14:09:03 -04:00
|
|
|
RSpec.describe Gitlab::Ci::Status::Manual do
|
2017-03-06 08:08:55 -05:00
|
|
|
subject do
|
|
|
|
described_class.new(double('subject'), double('user'))
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#text' do
|
|
|
|
it { expect(subject.text).to eq 'manual' }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#label' do
|
|
|
|
it { expect(subject.label).to eq 'manual action' }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#icon' do
|
2017-10-02 04:40:32 -04:00
|
|
|
it { expect(subject.icon).to eq 'status_manual' }
|
2017-03-06 08:08:55 -05:00
|
|
|
end
|
|
|
|
|
2017-03-10 10:49:52 -05:00
|
|
|
describe '#favicon' do
|
|
|
|
it { expect(subject.favicon).to eq 'favicon_status_manual' }
|
|
|
|
end
|
|
|
|
|
2017-03-06 08:08:55 -05:00
|
|
|
describe '#group' do
|
|
|
|
it { expect(subject.group).to eq 'manual' }
|
|
|
|
end
|
|
|
|
end
|