1
0
Fork 0
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:
nobu 2015-05-17 14:47:36 +00:00
parent 29a914ff2e
commit 47349e8701
4 changed files with 4 additions and 4 deletions

View file

@ -1 +0,0 @@
create_makefile("-test-/bug-3662/bug")

View file

@ -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);

View file

@ -0,0 +1 @@
create_makefile("-test-/notimplement")

View file

@ -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) {