diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-04-14 12:23:32 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-04-14 12:23:32 +0000 |
commit | af103c63dce907b2c08d95a2d50f75e21b16074c (patch) | |
tree | a08afc9d220b054974e64503eb811e53c78ee6da /test/ruby/test_autoload.rb | |
parent | d986500059e8cacbe179a883d114b29787ca6628 (diff) |
* variable.c (rb_autoload_p): search superclasses as same as actual
loading. fixes [ruby-core:35679]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31279 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_autoload.rb')
-rw-r--r-- | test/ruby/test_autoload.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/ruby/test_autoload.rb b/test/ruby/test_autoload.rb index f1a72fa11a..dd049f047a 100644 --- a/test/ruby/test_autoload.rb +++ b/test/ruby/test_autoload.rb @@ -34,4 +34,22 @@ p Foo::Bar File.unlink(*tmpfiles) rescue nil if tmpfiles tmpdirs.each {|dir| Dir.rmdir(dir)} end + + def test_autoload_p + bug4565 = '[ruby-core:35679]' + + require 'tmpdir' + tmpdir = Dir.mktmpdir('autoload') + tmpfile = tmpdir + '/foo.rb' + a = Module.new do + autoload :X, tmpfile + end + b = Module.new do + include a + end + assert_equal(true, a.const_defined?(:X)) + assert_equal(true, b.const_defined?(:X)) + assert_equal(tmpfile, a.autoload?(:X), bug4565) + assert_equal(tmpfile, b.autoload?(:X), bug4565) + end end |