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

XMLMiniEngineTest.run_with_gem("nokogiri") do
  class NokogiriSAXEngineTest < XMLMiniEngineTest
    private
      def engine
        "NokogiriSAX"
      end

      def expansion_attack_error
        RuntimeError
      end
  end
end