1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* test/ruby/test_super.rb (TestSuper#test_define_method): now methods

from procs can call super.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7540 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2004-12-12 12:32:21 +00:00
parent 5f87cfb94c
commit b6aba9ad54
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Sun Dec 12 21:32:14 2004 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/ruby/test_super.rb (TestSuper#test_define_method): now methods
from procs can call super.
Sun Dec 12 10:35:10 2004 Dave Thomas <dave@pragprog.com>
* lib/rdoc/generators/template/html/html.rb (RDoc::Page): Don't

View file

@ -83,6 +83,6 @@ class TestSuper < Test::Unit::TestCase
def test_define_method # [ruby-core:03856]
a = A.new
a.uu(12)
assert_raise(RuntimeError) {a.tt(12)}
assert_equal("A#tt", a.tt(12))
end
end