HEX
Server: Apache
System: Linux s198.coreserver.jp 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: nagasaki (10062)
PHP: 7.1.33
Disabled: NONE
Upload Files
File: //usr/local/rvm/src/ruby-3.0.2/test/-ext-/exception/test_ensured.rb
# frozen_string_literal: false
require 'test/unit'

module Bug
  class Bug7802 < RuntimeError
  end

  class Test_ExceptionE < Test::Unit::TestCase
    def test_ensured
      assert_separately([], <<-'end;') # do

        require '-test-/exception'

        module Bug
          class Bug7802 < RuntimeError
            def try_method
              raise self
            end

            def ensured_method
              [1].detect {|i| true}
            end
          end
        end

        assert_raise(Bug::Bug7802, '[ruby-core:52022] [Bug #7802]') {
          Bug::Exception.ensured(Bug::Bug7802.new)
        }
      end;
    end
  end
end