Welcome to mirror list, hosted at ThFree Co, Russian Federation.

includes_spec.rb « entry « config « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1f28c24e70492b12f3a2b0aa91b06c955334a13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'fast_spec_helper'
require_dependency 'active_model'

RSpec.describe ::Gitlab::Ci::Config::Entry::Includes, feature_category: :pipeline_composition do
  subject(:include_entry) { described_class.new(config) }

  describe '#initialize' do
    let(:config) { 'test.yml' }

    it 'does not increase aspects' do
      2.times { expect { described_class.new(config) }.not_to change { described_class.aspects.count } }
    end
  end
end