summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNihad Abbasov <narkoz.2008@gmail.com>2012-09-21 04:53:13 -0700
committerNihad Abbasov <narkoz.2008@gmail.com>2012-09-21 04:53:13 -0700
commit1bae64d7f608e3d68d52fd59755216db6c70f7f4 (patch)
treeb702668f931405741be63f09848b3b40966f4f25
parentb62445813dffec92e85540ed081e4d6e12d58dc0 (diff)
downloadgitlab-ce-1bae64d7f608e3d68d52fd59755216db6c70f7f4.tar.gz
whitespace
-rw-r--r--spec/requests/api/users_spec.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/spec/requests/api/users_spec.rb b/spec/requests/api/users_spec.rb
index 5d7ef99c481..243f70f5230 100644
--- a/spec/requests/api/users_spec.rb
+++ b/spec/requests/api/users_spec.rb
@@ -47,6 +47,7 @@ describe Gitlab::API do
response.status.should == 401
end
end
+
context "when authenticated" do
it "should return array of ssh keys" do
user.keys << key
@@ -67,6 +68,7 @@ describe Gitlab::API do
response.status.should == 200
json_response["title"].should == key.title
end
+
it "should return 404 Not Found within invalid ID" do
get api("/user/keys/42", user)
response.status.should == 404
@@ -78,6 +80,7 @@ describe Gitlab::API do
post api("/user/keys", user), { title: "invalid key" }
response.status.should == 404
end
+
it "should create ssh key" do
key_attrs = Factory.attributes :key
expect {
@@ -94,6 +97,7 @@ describe Gitlab::API do
delete api("/user/keys/#{key.id}", user)
}.to change{user.keys.count}.by(-1)
end
+
it "should return 404 Not Found within invalid ID" do
delete api("/user/keys/42", user)
response.status.should == 404