diff options
author | Robert Schilling <rschilling@student.tugraz.at> | 2016-11-09 17:36:35 +0100 |
---|---|---|
committer | Robert Schilling <rschilling@student.tugraz.at> | 2016-11-09 17:36:35 +0100 |
commit | 603ebe55f0232f16b5f1db95d2962a4cf5cdcc1b (patch) | |
tree | 78dbf11edfbdd1bf2f93331c2096c6b09bcba13e /spec | |
parent | c392b0cc24ba40e3fed920c6c693cb24665193af (diff) | |
download | gitlab-ce-603ebe55f0232f16b5f1db95d2962a4cf5cdcc1b.tar.gz |
Grapify the session APIgrapify-session-api
Diffstat (limited to 'spec')
-rw-r--r-- | spec/requests/api/session_spec.rb | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/spec/requests/api/session_spec.rb b/spec/requests/api/session_spec.rb index acad1365ace..e3f22b4c578 100644 --- a/spec/requests/api/session_spec.rb +++ b/spec/requests/api/session_spec.rb @@ -67,22 +67,24 @@ describe API::API, api: true do end context "when empty password" do - it "returns authentication error" do + it "returns authentication error with email" do post api("/session"), email: user.email - expect(response).to have_http_status(401) - expect(json_response['email']).to be_nil - expect(json_response['private_token']).to be_nil + expect(response).to have_http_status(400) + end + + it "returns authentication error with username" do + post api("/session"), email: user.username + + expect(response).to have_http_status(400) end end context "when empty name" do it "returns authentication error" do post api("/session"), password: user.password - expect(response).to have_http_status(401) - expect(json_response['email']).to be_nil - expect(json_response['private_token']).to be_nil + expect(response).to have_http_status(400) end end end |