summaryrefslogtreecommitdiff
path: root/spec/finders/security/jobs_finder_spec.rb
blob: 9badf9c38cff7bad44f6a37155015b29be231dfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Security::JobsFinder do
  it 'is an abstract class that does not permit instantiation' do
    expect { described_class.new(pipeline: nil) }.to raise_error(
      NotImplementedError,
      'This is an abstract class, please instantiate its descendants'
    )
  end

  describe '.allowed_job_types' do
    it 'must be implemented by child classes' do
      expect { described_class.allowed_job_types }.to raise_error(
        NotImplementedError,
        'allowed_job_types must be overwritten to return an array of job types'
      )
    end
  end
end