Skip to content

Instantly share code, notes, and snippets.

@chinloongtan
Created October 10, 2015 07:39
Show Gist options
  • Save chinloongtan/26bcf5046ce84f08dcfa to your computer and use it in GitHub Desktop.
Save chinloongtan/26bcf5046ce84f08dcfa to your computer and use it in GitHub Desktop.
# /spec/support/requests/json_helpers.rb
module Requests
module JsonHelpers
def json
@json ||= JSON.parse(response.body) rescue response.body
end
end
end
RSpec.configure do |config|
config.include Requests::JsonHelpers
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment