From b8eb530979f50f6a216badbd88af2ba3833d9c08 Mon Sep 17 00:00:00 2001 From: kazu Date: Tue, 21 Aug 2018 14:57:56 +0000 Subject: 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 --- ext/-test-/notimplement/bug.c | 2 +- test/-ext-/test_notimplement.rb | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ext/-test-/notimplement/bug.c b/ext/-test-/notimplement/bug.c index b8e871f55f..82e243a81d 100644 --- a/ext/-test-/notimplement/bug.c +++ b/ext/-test-/notimplement/bug.c @@ -11,7 +11,7 @@ void Init_notimplement(void) { VALUE mBug = rb_define_module("Bug"); - VALUE klass = rb_define_module_under(mBug, "NotImplement"); + VALUE klass = rb_define_class_under(mBug, "NotImplement", rb_cObject); 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); diff --git a/test/-ext-/test_notimplement.rb b/test/-ext-/test_notimplement.rb index 882c905faf..92a2fd22b8 100644 --- a/test/-ext-/test_notimplement.rb +++ b/test/-ext-/test_notimplement.rb @@ -7,10 +7,14 @@ class Test_NotImplement < Test::Unit::TestCase assert_raise(NotImplementedError, bug3662) { Bug.funcall(:notimplement) } + assert_raise(NotImplementedError) { + Bug::NotImplement.new.notimplement + } end def test_respond_to assert_not_respond_to(Bug, :notimplement) + assert_not_respond_to(Bug::NotImplement.new, :notimplement) end def test_not_method_defined -- cgit v1.2.3