aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/xml_mini/libxmlsax_engine_test.rb
blob: f457e160d6ea969337c05a1c6ec66ff57e7057c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require_relative "xml_mini_engine_test"

XMLMiniEngineTest.run_with_gem("libxml") do
  class LibXMLSAXEngineTest < XMLMiniEngineTest
    private
      def engine
        "LibXMLSAX"
      end

      def expansion_attack_error
        LibXML::XML::Error
      end
  end
end