aboutsummaryrefslogtreecommitdiffstats
path: root/spec/support/json_helper.rb
blob: a383981a0122d46b94487f372137dbc9446fc959 (plain)
1
2
3
4
5
6
7
8
9
10
11
module Support
  module JsonHelper
    def json_response_body
      JSON.parse(response.body)
    end
  end
end

RSpec.configure do | config |
  config.include Support::JsonHelper, type: :request
end