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

delete_pipeline_helper.rb « show « pipeline « project « pact_helpers « provider « contracts « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2d29fabfecaca3612befb476ed2ad025a2a7292c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require_relative '../../../../spec_helper'
require_relative '../../../../states/project/pipeline/show_state'

module Provider
  module DeletePipelineHelper
    Pact.service_provider "DELETE pipeline" do
      app { Environments::Test.app }

      honours_pact_with 'Pipelines#show' do
        pact_uri '../contracts/project/pipeline/show/pipelines#show-delete_pipeline.json'
      end
    end
  end
end