summaryrefslogtreecommitdiff
path: root/test/ruby/namespace/a.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/namespace/a.rb')
-rw-r--r--test/ruby/namespace/a.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/ruby/namespace/a.rb b/test/ruby/namespace/a.rb
deleted file mode 100644
index a6dcd9cd21..0000000000
--- a/test/ruby/namespace/a.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-class NS_A
- FOO = "foo_a1"
-
- def yay
- "yay_a1"
- end
-end
-
-module NS_B
- BAR = "bar_b1"
-
- def self.yay
- "yay_b1"
- end
-end