summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/bigdecimal/test_ractor.rb23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/bigdecimal/test_ractor.rb b/test/bigdecimal/test_ractor.rb
new file mode 100644
index 0000000000..3ccd7c8073
--- /dev/null
+++ b/test/bigdecimal/test_ractor.rb
@@ -0,0 +1,23 @@
+# frozen_string_literal: true
+require_relative "testbase"
+
+class TestBigDecimalRactor < Test::Unit::TestCase
+ include TestBigDecimalBase
+
+ def setup
+ super
+ skip unless defined? Ractor
+ end
+
+ def test_ractor_shareable
+ assert_separately([], "#{<<~"begin;"}\n#{<<~'end;'}")
+ begin;
+ $VERBOSE = nil
+ require "bigdecimal"
+ r = Ractor.new BigDecimal(Math::PI, Float::DIG+1) do |pi|
+ BigDecimal('2.0')*pi
+ end
+ assert_equal(2*Math::PI, r.take)
+ end;
+ end
+end