summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-21 14:57:56 +0000
committerkazu <kazu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2018-08-21 14:57:56 +0000
commitb8eb530979f50f6a216badbd88af2ba3833d9c08 (patch)
tree4d6eaacb40840518a99e55e4074a661e2ab53d02 /test
parentefb002cd7aa60c0885d33d42846e19d311fec95e (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
Diffstat (limited to 'test')
-rw-r--r--test/-ext-/test_notimplement.rb4
1 files changed, 4 insertions, 0 deletions
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