Check for success instead of 200 in json UAT helper

This commit is contained in:
Thibault Jouan 2015-05-04 00:52:21 +00:00
parent 689fe2f4dd
commit 562b57a900

View File

@ -40,8 +40,8 @@ module AcceptanceHelpers
end
end
def json status = 200
expect(response.status).to be status
def json status = :success
expect(response).to have_http_status status
JSON.parse(response.body, symbolize_names: true)
end
end