spec/lib/release_tools/passing_build_spec.rb [488:504]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      pipeline = double(:pipeline, status: 'success')

      expect(client)
        .to receive(:pipelines)
        .with(
          project.auto_deploy_path,
          {
            sha: commit,
            ref: project.default_branch,
            status: 'success'
          }
        )
        .and_return(Gitlab::PaginatedResponse.new([pipeline]))

      expect(service)
        .to receive(:full_pipeline?)
        .with(pipeline)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/lib/release_tools/passing_build_spec.rb [511:527]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      pipeline = double(:pipeline, status: 'success')

      expect(client)
        .to receive(:pipelines)
        .with(
          project.auto_deploy_path,
          {
            sha: commit,
            ref: project.default_branch,
            status: 'success'
          }
        )
        .and_return(Gitlab::PaginatedResponse.new([pipeline]))

      expect(service)
        .to receive(:full_pipeline?)
        .with(pipeline)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



