Sha256: 4b31d8df90b2483b3ea19cd0ba92a04e94f860e27712aeeb55aacadb80821fb2
Contents?: true
Size: 596 Bytes
Versions: 16
Compression:
Stored size: 596 Bytes
Contents
# frozen_string_literal: true require "rails-dom-testing" require "action_dispatch/testing/assertions/response" require "action_dispatch/testing/assertions/routing" module ActionDispatch module Assertions 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 Rails::Dom::Testing.html_document.parse(@response.body) end end end end
Version data entries
16 entries across 16 versions & 3 rubygems