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