aboutsummaryrefslogtreecommitdiffstats
path: root/test/ruby/test_autoload.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_autoload.rb')
-rw-r--r--test/ruby/test_autoload.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/test/ruby/test_autoload.rb b/test/ruby/test_autoload.rb
index 2e53c9203d..171dbb6293 100644
--- a/test/ruby/test_autoload.rb
+++ b/test/ruby/test_autoload.rb
@@ -425,6 +425,19 @@ p Foo::Bar
end
end
+ def test_source_location
+ klass = self.class
+ bug = "Bug16764"
+ Dir.mktmpdir('autoload') do |tmpdir|
+ path = "#{tmpdir}/test-#{bug}.rb"
+ File.write(path, "#{klass}::#{bug} = __FILE__\n")
+ klass.autoload(:Bug16764, path)
+ assert_equal [__FILE__, __LINE__-1], klass.const_source_location(bug)
+ assert_equal path, klass.const_get(bug)
+ assert_equal [path, 1], klass.const_source_location(bug)
+ end
+ end
+
def test_no_leak
assert_no_memory_leak([], '', <<~'end;', 'many autoloads', timeout: 60)
200000.times do |i|