aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test/xml_mini/nokogirisax_engine_test.rb
blob: f38a56e83ba59dbd1970de7343234aa6c8f7cda5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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