diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | test/ruby/test_method.rb | 16 |
2 files changed, 21 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Sat Nov 22 21:29:54 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp> + + * test/ruby/test_method.rb (test_default_accessiblity): test case for + [ruby-dev:37124]. + Sat Nov 22 18:24:24 2008 Yukihiro Matsumoto <matz@ruby-lang.org> * file.c (rb_file_world_writable_p): should return nil for non diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb index d978050dc..088f34669 100644 --- a/test/ruby/test_method.rb +++ b/test/ruby/test_method.rb @@ -27,6 +27,15 @@ class TestMethod < Test::Unit::TestCase class Derived < Base def foo() :derived end end + class T + def initialize; end + def normal_method; end + end + module M + def func; end + module_function :func + def meth; end + end def test_arity assert_equal(0, method(:m0).arity) @@ -221,4 +230,11 @@ class TestMethod < Test::Unit::TestCase assert_raise(ArgumentError) { o.method(:foo=).call(1, 2, 3) } assert_raise(ArgumentError) { o.method(:foo).call(1) } end + + def test_default_accessibility + assert T.public_instance_methods.include?(:normal_method) + assert !T.public_instance_methods.include?(:initialize) + assert M.public_instance_methods.include?(:func) + assert !M.public_instance_methods.include?(:meth) + end end |
