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

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

require 'spec_helper'

RSpec.describe Ci::JobArtifacts::DeleteProjectArtifactsService do
  let_it_be(:project) { create(:project) }

  subject { described_class.new(project: project) }

  describe '#execute' do
    it 'enqueues a Ci::ExpireProjectBuildArtifactsWorker' do
      expect(Ci::JobArtifacts::ExpireProjectBuildArtifactsWorker).to receive(:perform_async).with(project.id).and_call_original

      subject.execute
    end
  end
end