aboutsummaryrefslogtreecommitdiffstats
path: root/bootstraptest
diff options
context:
space:
mode:
authorQuang-Minh Nguyen <nguyenquangminh0711@gmail.com>2020-09-18 12:15:32 +0700
committerKoichi Sasada <ko1@atdot.net>2020-09-20 23:10:44 +0900
commitd5fa66156ab116df558448402b93c9c129b30291 (patch)
tree0a2d12b7d8628f680a6ed9d8be160fc0b7bced20 /bootstraptest
parent84c4c7bec8f17081bc59e5447e2101ffc884fb2f (diff)
downloadruby-d5fa66156ab116df558448402b93c9c129b30291.tar.gz
Add status to Ractor#inspect
Diffstat (limited to 'bootstraptest')
-rw-r--r--bootstraptest/test_ractor.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/bootstraptest/test_ractor.rb b/bootstraptest/test_ractor.rb
index ab20082711..4b6afc2c53 100644
--- a/bootstraptest/test_ractor.rb
+++ b/bootstraptest/test_ractor.rb
@@ -17,6 +17,27 @@ assert_equal "must be called with a block", %q{
end
}
+# Ractor#inspect
+assert_equal "#<Ractor:#1 running>", %q{
+ Ractor.current.inspect
+}
+
+assert_match /^#<Ractor:#([^ ]*?) bootstraptest.tmp.rb:[0-9]+ blocking>$/, %q{
+ r = Ractor.new { Ractor.recv }
+ r.inspect
+}
+
+assert_match /^#<Ractor:#([^ ]*?) bootstraptest.tmp.rb:[0-9]+ terminated>$/, %q{
+ r = Ractor.new { '' }
+ r.take
+ r.inspect
+}
+
+assert_match /^#<Ractor:#([^ ]*?) Test Ractor bootstraptest.tmp.rb:[0-9]+ blocking>$/, %q{
+ r = Ractor.new(name: 'Test Ractor') { Ractor.recv }
+ r.inspect
+}
+
# A return value of a Ractor block will be a message from the Ractor.
assert_equal 'ok', %q{
# join