Fix Grape tests.

This commit is contained in:
Connor Shea 2016-08-09 08:23:34 -06:00
parent c53b599e61
commit 4efc4f5b31
No known key found for this signature in database
GPG Key ID: 1993299A3C9BE6CF
1 changed files with 5 additions and 10 deletions

View File

@ -398,9 +398,9 @@ describe API::API, api: true do
end.to change{ user.keys.count }.by(1)
end
it "returns 405 for invalid ID" do
post api("/users/ASDF/keys", admin)
expect(response).to have_http_status(405)
it "returns 400 for invalid ID" do
post api("/users/999999/keys", admin)
expect(response).to have_http_status(400)
end
end
@ -429,11 +429,6 @@ describe API::API, api: true do
expect(json_response).to be_an Array
expect(json_response.first['title']).to eq(key.title)
end
it "returns 405 for invalid ID" do
get api("/users/ASDF/keys", admin)
expect(response).to have_http_status(405)
end
end
end
@ -490,8 +485,8 @@ describe API::API, api: true do
end
it "raises error for invalid ID" do
post api("/users/ASDF/emails", admin)
expect(response).to have_http_status(405)
post api("/users/999999/emails", admin)
expect(response).to have_http_status(400)
end
end