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

expire_build_artifacts_worker_spec.rb « workers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 06561e94fb786f48c20f2e30e2f6d5c8144cf6cc (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'

describe ExpireBuildArtifactsWorker do
  let(:worker) { described_class.new }

  describe '#perform' do
    it 'executes a service' do
      expect_next_instance_of(Ci::DestroyExpiredJobArtifactsService) do |instance|
        expect(instance).to receive(:execute)
      end

      worker.perform
    end
  end
end