diff options
author | Michael <michael@fallo.ws> | 2013-02-07 11:01:53 +0000 |
---|---|---|
committer | Michael <michael@fallo.ws> | 2013-02-07 11:01:53 +0000 |
commit | 867099c37578d7ed78aa3bee3e93196196c8876a (patch) | |
tree | 0934174325571f0b6824bb14078ab46a238b6681 | |
parent | 502f771dba6e9abd67350cfe88ec1d8ba31267d9 (diff) | |
download | gitlab-shell-867099c37578d7ed78aa3bee3e93196196c8876a.tar.gz |
Read auth keys file from config
-rw-r--r-- | spec/gitlab_keys_spec.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/gitlab_keys_spec.rb b/spec/gitlab_keys_spec.rb index 1c557aa..cb36ea7 100644 --- a/spec/gitlab_keys_spec.rb +++ b/spec/gitlab_keys_spec.rb @@ -20,7 +20,7 @@ describe GitlabKeys do end it "should receive valid cmd" do - valid_cmd = "echo 'command=\"#{ROOT_PATH}/bin/gitlab-shell key-741\",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ssh-rsa AAAAB3NzaDAxx2E' >> /home/git/.ssh/authorized_keys" + valid_cmd = "echo 'command=\"#{ROOT_PATH}/bin/gitlab-shell key-741\",no-port-forwarding,no-X11-forwarding,no-agent-forwarding,no-pty ssh-rsa AAAAB3NzaDAxx2E' >> {GitlabConfig.new.auth_file}" @gl_keys.should_receive(:system).with(valid_cmd) @gl_keys.send :add_key end @@ -33,7 +33,7 @@ describe GitlabKeys do end it "should receive valid cmd" do - valid_cmd = "sed -i '/key-741/d' /home/git/.ssh/authorized_keys" + valid_cmd = "sed -i '/key-741/d' {GitlabConfig.new.auth_file}" @gl_keys.should_receive(:system).with(valid_cmd) @gl_keys.send :rm_key end |