summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorMichael <michael@fallo.ws>2013-02-07 11:05:55 +0000
committerMichael <michael@fallo.ws>2013-02-07 11:05:55 +0000
commitde90432d73c86a16e2b1dc3eec8ddfe03a26c9f8 (patch)
treeb6c77e08e7581d80a3955cb9ec3cb71cbeab979c /spec
parent867099c37578d7ed78aa3bee3e93196196c8876a (diff)
downloadgitlab-shell-de90432d73c86a16e2b1dc3eec8ddfe03a26c9f8.tar.gz
Updated with #{}
Diffstat (limited to 'spec')
-rw-r--r--spec/gitlab_keys_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/gitlab_keys_spec.rb b/spec/gitlab_keys_spec.rb
index cb36ea7..c986558 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' >> {GitlabConfig.new.auth_file}"
+ 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' {GitlabConfig.new.auth_file}"
+ 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