aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-28 17:57:48 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-01-28 17:57:48 +0000
commitb511e1bfbe649b938e317e00ad1795f1b9623758 (patch)
tree708e4697a565a72dcc1f2a9805ba2d99bcd79e23 /test
parentb1e829fb30be8a1a5c842a981ed9eacf9c77b1a3 (diff)
downloadruby-b511e1bfbe649b938e317e00ad1795f1b9623758.tar.gz
* variable.c (rb_mod_const_of, sv_i): Module#constant should exclude
private constants. see [ruby-core:32912]. * test/ruby/test_module.rb (test_constants_with_private_constant): add a test for above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_module.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/ruby/test_module.rb b/test/ruby/test_module.rb
index e3b433e2cb..c7acac05f9 100644
--- a/test/ruby/test_module.rb
+++ b/test/ruby/test_module.rb
@@ -981,4 +981,8 @@ class TestModule < Test::Unit::TestCase
c.public_constant(:FOO)
assert_equal("foo", c::FOO)
end
+
+ def test_constants_with_private_constant
+ assert(!(::TestModule).constants.include?(:PrivateClass))
+ end
end