命名空間
方法
包含模組
- ActionDispatch::Assertions::ResponseAssertions
- ActionDispatch::Assertions::RoutingAssertions
- Rails::Dom::Testing::Assertions
實例公開方法
html_document() 連結
來源:顯示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/testing/assertions.rb, line 17 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