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

base_spec.rb « functions « interpolation « config « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2b575afb6ffa040c49a985b7524a3c0499e2407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

require 'fast_spec_helper'

RSpec.describe Gitlab::Ci::Config::Interpolation::Functions::Base, feature_category: :pipeline_composition do
  let(:custom_function_klass) do
    Class.new(described_class) do
      def self.function_expression_pattern
        /.*/
      end

      def self.name
        'test_function'
      end
    end
  end

  it 'defines an expected interface for child classes' do
    expect { described_class.function_expression_pattern }.to raise_error(NotImplementedError)
    expect { described_class.name }.to raise_error(NotImplementedError)
    expect { custom_function_klass.new('test', nil).execute('input') }.to raise_error(NotImplementedError)
  end
end