1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/-ext-/exception/test_data_error.rb

15 lines
354 B
Ruby
Raw Normal View History

# frozen_string_literal: false
require 'test/unit'
module Bug
class Test_ExceptionDE < Test::Unit::TestCase
def test_cleanup_data_error
bug9167 = '[ruby-core:58643] [Bug #9167]'
assert_normal_exit(<<-'end;', bug9167) # do
require '-test-/exception'
raise Bug::Exception::DataError, "Error"
end;
end
end
end