diff options
-rw-r--r-- | spec/gitlab_projects_spec.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/gitlab_projects_spec.rb b/spec/gitlab_projects_spec.rb index 688c878..38af894 100644 --- a/spec/gitlab_projects_spec.rb +++ b/spec/gitlab_projects_spec.rb @@ -31,7 +31,9 @@ describe GitlabProjects do end it "should receive valid cmd" do - valid_cmd = "cd #{tmp_repo_path} && git init --bare && ln -s #{ROOT_PATH}/hooks/post-receive #{tmp_repo_path}/hooks/post-receive" + valid_cmd = "cd #{tmp_repo_path} && git init --bare" + valid_cmd << " && ln -s #{ROOT_PATH}/hooks/post-receive #{tmp_repo_path}/hooks/post-receive" + valid_cmd << " && ln -s #{ROOT_PATH}/hooks/update #{tmp_repo_path}/hooks/update" @gl_projects.should_receive(:system).with(valid_cmd) @gl_projects.send :add_project end |