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