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

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

require 'spec_helper'

RSpec.describe Deployments::ArchiveInProjectWorker, feature_category: :continuous_delivery do
  subject { described_class.new.perform(deployment&.project_id) }

  describe '#perform' do
    let(:deployment) { create(:deployment, :success) }

    it 'executes Deployments::ArchiveInProjectService' do
      expect(Deployments::ArchiveInProjectService)
          .to receive(:new).with(deployment.project, nil).and_call_original

      subject
    end
  end
end