debian-mirror-gitlab/spec/workers/update_container_registry_info_worker_spec.rb
2020-08-09 17:44:08 +05:30

16 lines
359 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe UpdateContainerRegistryInfoWorker do
describe '#perform' do
it 'calls UpdateContainerRegistryInfoService' do
expect_next_instance_of(UpdateContainerRegistryInfoService) do |service|
expect(service).to receive(:execute)
end
subject.perform
end
end
end