spec/lib/release_tools/tracker/merge_request_updater_spec.rb [39:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      deploy = ReleaseTools::Deployments::DeploymentTracker::Deployment
        .new(ReleaseTools::Project::GitlabEe.canonical_or_security_path, 1, 'success')

      mr1 = double(
        :mr,
        project_id: 2,
        iid: 3,
        web_url: 'foo',
        labels: %w[workflow::canary foo],
        source_project_id: 1
      )

      page = Gitlab::PaginatedResponse.new([mr1])

      expect(ReleaseTools::GitlabClient)
        .to receive(:deployed_merge_requests)
        .with(deploy.project_path, deploy.id)
        .and_return(page)

      expect(ReleaseTools::GitlabClient)
        .to receive(:update_merge_request)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



spec/lib/release_tools/tracker/merge_request_updater_spec.rb [66:86]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      deploy = ReleaseTools::Deployments::DeploymentTracker::Deployment
        .new(ReleaseTools::Project::GitlabEe.canonical_or_security_path, 1, 'success')

      mr1 = double(
        :mr,
        project_id: 2,
        iid: 3,
        web_url: 'foo',
        labels: %w[workflow::canary foo],
        source_project_id: 1
      )

      page = Gitlab::PaginatedResponse.new([mr1])

      expect(ReleaseTools::GitlabClient)
        .to receive(:deployed_merge_requests)
        .with(deploy.project_path, deploy.id)
        .and_return(page)

      expect(ReleaseTools::GitlabClient)
        .to receive(:update_merge_request)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



