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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'spec/finders/security/jobs_finder_spec.rb')
-rw-r--r--spec/finders/security/jobs_finder_spec.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/spec/finders/security/jobs_finder_spec.rb b/spec/finders/security/jobs_finder_spec.rb
new file mode 100644
index 00000000000..9badf9c38cf
--- /dev/null
+++ b/spec/finders/security/jobs_finder_spec.rb
@@ -0,0 +1,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