debian-mirror-gitlab/spec/workers/expire_build_artifacts_worker_spec.rb
2020-03-13 15:44:24 +05:30

18 lines
368 B
Ruby

# 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