35 lines
747 B
Ruby
35 lines
747 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe Gitlab::Ci::Status::Build::Skipped do
|
|
let(:user) { create(:user) }
|
|
|
|
subject do
|
|
described_class.new(double('subject'))
|
|
end
|
|
|
|
describe '#illustration' do
|
|
it { expect(subject.illustration).to include(:image, :size, :title) }
|
|
end
|
|
|
|
describe '.matches?' do
|
|
subject {described_class.matches?(build, user) }
|
|
|
|
context 'when build is skipped' do
|
|
let(:build) { create(:ci_build, :skipped) }
|
|
|
|
it 'is a correct match' do
|
|
expect(subject).to be true
|
|
end
|
|
end
|
|
|
|
context 'when build is not skipped' do
|
|
let(:build) { create(:ci_build) }
|
|
|
|
it 'does not match' do
|
|
expect(subject).to be false
|
|
end
|
|
end
|
|
end
|
|
end
|