summaryrefslogtreecommitdiff
path: root/test/-ext-/exception/test_data_error.rb
blob: 140de5bd5af9e22df437a6a584c5416684f63730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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