summaryrefslogtreecommitdiff
path: root/test/ruby/box/open_class_with_include.rb
diff options
context:
space:
mode:
authorSatoshi Tagomori <s-tagomori@sakura.ad.jp>2025-11-05 13:52:45 +0900
committerSatoshi Tagomori <tagomoris@gmail.com>2025-11-07 13:14:54 +0900
commit50b9d9d355b2c64101ebdd2f2de0e9010bb050dc (patch)
tree193329921f80fadeed58e20e42151d6c2eb18bf7 /test/ruby/box/open_class_with_include.rb
parentf19b29d1dbb2918dee112b0df0cba2ca1165a399 (diff)
rename namespace.c (and others) to box.c
Diffstat (limited to 'test/ruby/box/open_class_with_include.rb')
-rw-r--r--test/ruby/box/open_class_with_include.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/ruby/box/open_class_with_include.rb b/test/ruby/box/open_class_with_include.rb
new file mode 100644
index 0000000000..ad8fd58ea0
--- /dev/null
+++ b/test/ruby/box/open_class_with_include.rb
@@ -0,0 +1,31 @@
+module StringExt
+ FOO = "foo 1"
+ def say_foo
+ "I'm saying " + FOO
+ end
+end
+
+class String
+ include StringExt
+ def say
+ say_foo
+ end
+end
+
+module OpenClassWithInclude
+ def self.say
+ String.new.say
+ end
+
+ def self.say_foo
+ String.new.say_foo
+ end
+
+ def self.say_with_obj(str)
+ str.say
+ end
+
+ def self.refer_foo
+ String::FOO
+ end
+end