aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_dispatch/testing/assertions.rb
blob: 44815a75a8f49f69e20562cbf7036fa63e1d34c2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                           

                     

                                                                               


                                 

                              








                                                            

     
require 'loofah'
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 =~ /xml$/
        Loofah.xml_document(@response.body)
      else
        Loofah.document(@response.body)
      end
    end
  end
end