summaryrefslogtreecommitdiff
path: root/spec/services/ci/pipeline_processing/atomic_processing_service_spec.rb
blob: a66d3898c5cf5f9337a2b3577bdd5208471c5d26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'spec_helper'
require_relative 'shared_processing_service'
require_relative 'shared_processing_service_tests_with_yaml'

RSpec.describe Ci::PipelineProcessing::AtomicProcessingService do
  it_behaves_like 'Pipeline Processing Service'
  it_behaves_like 'Pipeline Processing Service Tests With Yaml'

  private

  def process_pipeline
    described_class.new(pipeline).execute
  end
end