mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
notimplement: rename
* ext/-test-/notimplement, test/-ext-/test_notimplement.rb: rename from bug-3662. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50524 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
29a914ff2e
commit
47349e8701
4 changed files with 4 additions and 4 deletions
|
@ -1 +0,0 @@
|
|||
create_makefile("-test-/bug-3662/bug")
|
|
@ -8,7 +8,7 @@ bug_funcall(int argc, VALUE *argv, VALUE self)
|
|||
}
|
||||
|
||||
void
|
||||
Init_bug(void)
|
||||
Init_notimplement(void)
|
||||
{
|
||||
VALUE mBug = rb_define_module("Bug");
|
||||
rb_define_module_function(mBug, "funcall", bug_funcall, -1);
|
1
ext/-test-/notimplement/extconf.rb
Normal file
1
ext/-test-/notimplement/extconf.rb
Normal file
|
@ -0,0 +1 @@
|
|||
create_makefile("-test-/notimplement")
|
|
@ -1,6 +1,6 @@
|
|||
require '-test-/bug-3662/bug'
|
||||
require '-test-/notimplement'
|
||||
|
||||
class Test_BUG_3662 < Test::Unit::TestCase
|
||||
class TestNotImplement < Test::Unit::TestCase
|
||||
def test_funcall_notimplement
|
||||
bug3662 = '[ruby-dev:41953]'
|
||||
assert_raise(NotImplementedError, bug3662) {
|
Loading…
Reference in a new issue