summaryrefslogtreecommitdiff
path: root/spec/workers
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2019-03-22 16:44:14 +0000
committerNick Thomas <nick@gitlab.com>2019-03-25 12:56:46 +0000
commit558e946263a58075d396a89427f44843e5fb789f (patch)
tree277ec60e6bf50ea606824225bae4a8e46af36124 /spec/workers
parented99296edfd09cc2fad187458c18f5c174804270 (diff)
downloadgitlab-ce-558e946263a58075d396a89427f44843e5fb789f.tar.gz
Rename GitTagPushService -> Git::TagPushService
Diffstat (limited to 'spec/workers')
-rw-r--r--spec/workers/post_receive_spec.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/spec/workers/post_receive_spec.rb b/spec/workers/post_receive_spec.rb
index caae46a3175..d2881f99a84 100644
--- a/spec/workers/post_receive_spec.rb
+++ b/spec/workers/post_receive_spec.rb
@@ -34,7 +34,7 @@ describe PostReceive do
context 'empty changes' do
it "does not call any PushService but runs after project hooks" do
expect(GitPushService).not_to receive(:new)
- expect(GitTagPushService).not_to receive(:new)
+ expect(Git::TagPushService).not_to receive(:new)
expect_next_instance_of(SystemHooksService) { |service| expect(service).to receive(:execute_hooks) }
described_class.new.perform(gl_repository, key_id, "")
@@ -46,7 +46,7 @@ describe PostReceive do
it 'returns false' do
expect(GitPushService).not_to receive(:new)
- expect(GitTagPushService).not_to receive(:new)
+ expect(Git::TagPushService).not_to receive(:new)
expect(described_class.new.perform(gl_repository, key_id, base64_changes)).to be false
end
@@ -62,7 +62,7 @@ describe PostReceive do
it "calls GitPushService" do
expect_any_instance_of(GitPushService).to receive(:execute).and_return(true)
- expect_any_instance_of(GitTagPushService).not_to receive(:execute)
+ expect_any_instance_of(Git::TagPushService).not_to receive(:execute)
described_class.new.perform(gl_repository, key_id, base64_changes)
end
end
@@ -70,9 +70,9 @@ describe PostReceive do
context "tags" do
let(:changes) { "123456 789012 refs/tags/tag" }
- it "calls GitTagPushService" do
+ it "calls Git::TagPushService" do
expect_any_instance_of(GitPushService).not_to receive(:execute)
- expect_any_instance_of(GitTagPushService).to receive(:execute).and_return(true)
+ expect_any_instance_of(Git::TagPushService).to receive(:execute).and_return(true)
described_class.new.perform(gl_repository, key_id, base64_changes)
end
end
@@ -82,7 +82,7 @@ describe PostReceive do
it "does not call any of the services" do
expect_any_instance_of(GitPushService).not_to receive(:execute)
- expect_any_instance_of(GitTagPushService).not_to receive(:execute)
+ expect_any_instance_of(Git::TagPushService).not_to receive(:execute)
described_class.new.perform(gl_repository, key_id, base64_changes)
end
end