mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
15 lines
358 B
Ruby
15 lines
358 B
Ruby
|
require 'test/unit'
|
||
|
require_relative '../../ruby/envutil'
|
||
|
|
||
|
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
|