mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
24 lines
506 B
Ruby
24 lines
506 B
Ruby
|
# 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
|