mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
fd0485acf7
[ruby-dev:41953] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28895 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
10 lines
237 B
Ruby
10 lines
237 B
Ruby
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
|