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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgpongelli <gabriele.pongelli@gmail.com>2017-03-07 15:59:20 +0300
committerSean McGivern <sean@mcgivern.me.uk>2017-03-07 15:59:20 +0300
commit4bcd900f14336df6c661a5c26b111eb4f039b7eb (patch)
treed5b8edc610b7bf0f00276603471f37a56b8590f0 /spec/workers/system_hook_push_worker_spec.rb
parentac9d792946deb17a402646e5481087e4d92f88ad (diff)
Moved call of SystemHooksService from UpdateMergeRequestsWorker to GitPushServic…
Diffstat (limited to 'spec/workers/system_hook_push_worker_spec.rb')
-rw-r--r--spec/workers/system_hook_push_worker_spec.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/spec/workers/system_hook_push_worker_spec.rb b/spec/workers/system_hook_push_worker_spec.rb
new file mode 100644
index 00000000000..b1d446ed25f
--- /dev/null
+++ b/spec/workers/system_hook_push_worker_spec.rb
@@ -0,0 +1,19 @@
+require 'spec_helper'
+
+describe SystemHookPushWorker do
+ include RepoHelpers
+
+ subject { described_class.new }
+
+ describe '#perform' do
+ it 'executes SystemHooksService with expected values' do
+ push_data = double('push_data')
+ system_hook_service = double('system_hook_service')
+
+ expect(SystemHooksService).to receive(:new).and_return(system_hook_service)
+ expect(system_hook_service).to receive(:execute_hooks).with(push_data, :push_hooks)
+
+ subject.perform(push_data, :push_hooks)
+ end
+ end
+end