gitlab-org--gitlab-foss/spec/workers/gitlab_usage_ping_worker_sp...

14 lines
308 B
Ruby

require 'spec_helper'
describe GitlabUsagePingWorker do
subject { described_class.new }
it 'delegates to SubmitUsagePingService' do
allow(subject).to receive(:try_obtain_lease).and_return(true)
expect_any_instance_of(SubmitUsagePingService).to receive(:execute)
subject.perform
end
end