debian-mirror-gitlab/spec/lib/gitlab/ci/project_config/source_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
872 B
Ruby
Raw Normal View History

2022-10-11 01:57:18 +05:30
# frozen_string_literal: true
require 'spec_helper'
2023-05-27 22:25:52 +05:30
RSpec.describe Gitlab::Ci::ProjectConfig::Source, feature_category: :continuous_integration do
2022-10-11 01:57:18 +05:30
let_it_be(:custom_config_class) { Class.new(described_class) }
let_it_be(:project) { build_stubbed(:project) }
let_it_be(:sha) { '123456' }
subject(:custom_config) { custom_config_class.new(project, sha, nil, nil, nil) }
describe '#content' do
subject(:content) { custom_config.content }
it { expect { content }.to raise_error(NotImplementedError) }
end
describe '#source' do
subject(:source) { custom_config.source }
it { expect { source }.to raise_error(NotImplementedError) }
end
2023-05-27 22:25:52 +05:30
describe '#internal_include_prepended?' do
subject(:internal_include_prepended) { custom_config.internal_include_prepended? }
it { expect(internal_include_prepended).to eq(false) }
end
2022-10-11 01:57:18 +05:30
end