mirror of
https://github.com/ruby/ruby.git
synced 2025-09-24 04:54:01 +02:00
* 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
This commit is contained in:
parent
b1e829fb30
commit
b511e1bfbe
3 changed files with 17 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue