summaryrefslogtreecommitdiff
path: root/spec/gitlab_projects_spec.rb
diff options
context:
space:
mode:
authorTiago Botelho <tiagonbotelho@hotmail.com>2017-09-15 10:17:14 +0100
committerTiago Botelho <tiagonbotelho@hotmail.com>2017-09-19 17:05:23 +0100
commit2f94bc3ecae26612a392f35e821db2976856e2cd (patch)
treef4fb290fb4eb78f712fc8258edf800e6ab49a25d /spec/gitlab_projects_spec.rb
parent2b575a8d646aa0dc45db6b8a371c7f6648f2ad69 (diff)
downloadgitlab-shell-2f94bc3ecae26612a392f35e821db2976856e2cd.tar.gz
Adds --force option to push branches.add-force-push-option-to-push-branches
Diffstat (limited to 'spec/gitlab_projects_spec.rb')
-rw-r--r--spec/gitlab_projects_spec.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/spec/gitlab_projects_spec.rb b/spec/gitlab_projects_spec.rb
index 2220ee4..ffba3d4 100644
--- a/spec/gitlab_projects_spec.rb
+++ b/spec/gitlab_projects_spec.rb
@@ -313,6 +313,18 @@ describe GitlabProjects do
expect(gl_projects.exec).to be false
end
+
+ context 'with --force' do
+ let(:cmd) { %W(git --git-dir=#{full_path} push --force -- #{remote_name} #{branch_name}) }
+ let(:gl_projects) { build_gitlab_projects('push-branches', repos_path, project_name, remote_name, '600', '--force', 'master') }
+
+ it 'executes the command' do
+ expect(Process).to receive(:spawn).with(*cmd).and_return(pid)
+ expect(Process).to receive(:wait).with(pid)
+
+ expect(gl_projects.exec).to be true
+ end
+ end
end
describe :fetch_remote do