diff options
author | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-08-21 14:57:56 +0000 |
---|---|---|
committer | kazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-08-21 14:57:56 +0000 |
commit | b8eb530979f50f6a216badbd88af2ba3833d9c08 () | |
tree | 4d6eaacb40840518a99e55e4074a661e2ab53d02 /ext/-test-/notimplement | |
parent | efb002cd7aa60c0885d33d42846e19d311fec95e (diff) |
Add more assertions for NotImplementedError of instance method
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64495 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ext/-test-/notimplement/bug.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ void Init_notimplement(void) { VALUE mBug = rb_define_module("Bug"); - VALUE klass = rb_define_module_under(mBug, "NotImplement"); rb_define_module_function(mBug, "funcall", bug_funcall, -1); rb_define_module_function(mBug, "notimplement", rb_f_notimplement, -1); rb_define_method(klass, "notimplement", rb_f_notimplement, -1); |