Files
sx-fc/spec/support/request_spec_helper.rb
2017-03-24 21:28:57 +06:30

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