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

get_list_project_pipelines_helper.rb « index « 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: 80cbbe3b4dd23afa6848f2cd2060998dc9ab95d7 (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/index_state'

module Provider
  module GetListProjectPipelinesHelper
    Pact.service_provider "GET List project pipelines" do
      app { Environments::Test.app }

      honours_pact_with 'Pipelines#index' do
        pact_uri '../contracts/project/project/pipeline/index/pipelines#index-get_list_project_pipelines.json'
      end
    end
  end
end