summaryrefslogtreecommitdiff
path: root/test/ruby/namespace/string_ext.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/namespace/string_ext.rb')
-rw-r--r--test/ruby/namespace/string_ext.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/ruby/namespace/string_ext.rb b/test/ruby/namespace/string_ext.rb
deleted file mode 100644
index d8c5a3d661..0000000000
--- a/test/ruby/namespace/string_ext.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-class String
- def yay
- "yay"
- end
-end
-
-String.new.yay # check this doesn't raise NoMethodError
-
-module Bar
- def self.yay
- String.new.yay
- end
-end