summaryrefslogtreecommitdiff
path: root/test/-ext-/test_notimplement.rb
blob: 22bb7f7b88745d041f0e10d1d19c3e6739bd6ae7 (plain)
1
2
3
4
5
6
7
8
9
10
require '-test-/notimplement'

class TestNotImplement < Test::Unit::TestCase
  def test_funcall_notimplement
    bug3662 = '[ruby-dev:41953]'
    assert_raise(NotImplementedError, bug3662) {
      Bug.funcall(:notimplement)
    }
  end
end