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

pipeline_email_shared_examples.rb « ci « shared_examples « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01e453d8fd92e3505a921d127aaceba34f4e3f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

RSpec.shared_examples 'correct pipeline information for pipelines for merge requests' do
  context 'when pipeline for merge request' do
    let(:pipeline) { merge_request.all_pipelines.first }

    let(:merge_request) do
      create(:merge_request, :with_detached_merge_request_pipeline,
        source_project: project,
        target_project: project)
    end

    it 'renders a source ref of the pipeline' do
      render

      expect(rendered).to have_content pipeline.source_ref
      expect(rendered).not_to have_content pipeline.ref
    end
  end
end