1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/-ext-/test_bug-3662.rb

11 lines
237 B
Ruby
Raw Normal View History

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