API: session documentation updated and test added

5-0-stable
Sebastian Ziebell 2013-02-27 12:58:06 +01:00
parent 873db06255
commit dffc2b8a8b
2 changed files with 15 additions and 0 deletions

View File

@ -21,3 +21,8 @@ Parameters:
"blocked": true
}
```
Return values:
+ `201 Created` on success
+ `401 Unauthorized` if the authentication process failed, e.g. invalid password or attribute not given

View File

@ -35,5 +35,15 @@ describe Gitlab::API do
json_response['private_token'].should be_nil
end
end
context "when empty name" do
it "should return authentication error" do
post api("/session"), password: user.password
response.status.should == 401
json_response['email'].should be_nil
json_response['private_token'].should be_nil
end
end
end
end