8 lines
148 B
Ruby
8 lines
148 B
Ruby
# spec/support/request_spec_helper
|
|
module RequestSpecHelper
|
|
# Parse JSON response to ruby hash
|
|
def json
|
|
JSON.parse(response.body)
|
|
end
|
|
end
|