debian-mirror-gitlab/spec/workers/web_hook_worker_spec.rb
2021-06-08 01:23:25 +05:30

19 lines
496 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe WebHookWorker do
include AfterNextHelpers
let_it_be(:project_hook) { create(:project_hook) }
let_it_be(:data) { { foo: 'bar' } }
let_it_be(:hook_name) { 'push_hooks' }
describe '#perform' do
it 'delegates to WebHookService' do
expect_next(WebHookService, project_hook, data.with_indifferent_access, hook_name).to receive(:execute)
subject.perform(project_hook.id, data, hook_name)
end
end
end