Sha256: e4bc41ad333c4a6961e6e22d534b237e04a98aa53bd95be9dfa54799bf32b0e7
Contents?: true
Size: 608 Bytes
Versions: 35
Compression:
Stored size: 608 Bytes
Contents
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.content_type.to_s =~ /xml\z/ Nokogiri::XML::Document.parse(@response.body) else Nokogiri::HTML::Document.parse(@response.body) end end end end
Version data entries
35 entries across 35 versions & 4 rubygems