From ab8114f481a1c7934f10af3a8eea37a7fd17abbf Mon Sep 17 00:00:00 2001 From: yugui Date: Sat, 22 Nov 2008 12:34:21 +0000 Subject: * test/ruby/test_method.rb (test_default_accessiblity): test case for [ruby-dev:37124]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20315 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_method.rb | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'test/ruby/test_method.rb') diff --git a/test/ruby/test_method.rb b/test/ruby/test_method.rb index d978050dc8..088f34669d 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 -- cgit v1.2.3