debian-mirror-gitlab/spec/lib/gitlab/ci/parsers_spec.rb

34 lines
789 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2018-11-18 11:00:15 +05:30
require 'spec_helper'
2019-02-15 15:39:39 +05:30
describe Gitlab::Ci::Parsers do
2018-11-18 11:00:15 +05:30
describe '.fabricate!' do
subject { described_class.fabricate!(file_type) }
2020-04-08 14:13:33 +05:30
context 'when file_type is junit' do
2018-11-18 11:00:15 +05:30
let(:file_type) { 'junit' }
it 'fabricates the class' do
2019-02-15 15:39:39 +05:30
is_expected.to be_a(described_class::Test::Junit)
2018-11-18 11:00:15 +05:30
end
end
2020-04-08 14:13:33 +05:30
context 'when file_type is cobertura' do
let(:file_type) { 'cobertura' }
it 'fabricates the class' do
is_expected.to be_a(described_class::Coverage::Cobertura)
end
end
2018-11-18 11:00:15 +05:30
context 'when file_type does not exist' do
let(:file_type) { 'undefined' }
it 'raises an error' do
2019-02-15 15:39:39 +05:30
expect { subject }.to raise_error(Gitlab::Ci::Parsers::ParserNotFoundError)
2018-11-18 11:00:15 +05:30
end
end
end
end