Commit 4efc4f5b authored by Connor Shea's avatar Connor Shea

Fix Grape tests.

parent c53b599e
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment