mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 05:25:34 +02:00
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
This commit is contained in:
parent
efb002cd7a
commit
b8eb530979
2 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue