mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
14 lines
320 B
Ruby
14 lines
320 B
Ruby
|
require 'test/unit'
|
||
|
|
||
|
module Bug
|
||
|
class TestException < 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
|