aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/kernel/fixtures/caller_locations.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/ruby/core/kernel/fixtures/caller_locations.rb')
-rw-r--r--spec/ruby/core/kernel/fixtures/caller_locations.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/spec/ruby/core/kernel/fixtures/caller_locations.rb b/spec/ruby/core/kernel/fixtures/caller_locations.rb
new file mode 100644
index 0000000000..cc4e04d38f
--- /dev/null
+++ b/spec/ruby/core/kernel/fixtures/caller_locations.rb
@@ -0,0 +1,7 @@
+module KernelSpecs
+ class CallerLocationsTest
+ def self.locations(*args)
+ caller_locations(*args)
+ end
+ end
+end