summaryrefslogtreecommitdiff
path: root/test/ruby/namespace/autoloading.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/namespace/autoloading.rb')
-rw-r--r--test/ruby/namespace/autoloading.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/test/ruby/namespace/autoloading.rb b/test/ruby/namespace/autoloading.rb
deleted file mode 100644
index 19ec00bcd5..0000000000
--- a/test/ruby/namespace/autoloading.rb
+++ /dev/null
@@ -1,8 +0,0 @@
-# frozen_string_literal: true
-
-autoload :NS_A, File.join(__dir__, 'a.1_1_0')
-NS_A.new.yay
-
-module NS_B
- autoload :BAR, File.join(__dir__, 'a')
-end