From 2f94bc3ecae26612a392f35e821db2976856e2cd Mon Sep 17 00:00:00 2001 From: Tiago Botelho Date: Fri, 15 Sep 2017 10:17:14 +0100 Subject: Adds --force option to push branches. --- spec/gitlab_projects_spec.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'spec/gitlab_projects_spec.rb') 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 -- cgit v1.2.1