Sha256: 0692c18bc79852f6fb278c2dec4d6f5998ba624298ae8d764059cd855e29f33e
Contents?: true
Size: 639 Bytes
Versions: 37
Compression:
Stored size: 639 Bytes
Contents
# frozen_string_literal: true require "rails-dom-testing" module ActionDispatch module Assertions autoload :ResponseAssertions, "action_dispatch/testing/assertions/response" autoload :RoutingAssertions, "action_dispatch/testing/assertions/routing" extend ActiveSupport::Concern include ResponseAssertions include RoutingAssertions include Rails::Dom::Testing::Assertions def html_document @html_document ||= if @response.media_type&.end_with?("xml") Nokogiri::XML::Document.parse(@response.body) else Nokogiri::HTML::Document.parse(@response.body) end end end end
Version data entries
37 entries across 37 versions & 4 rubygems