1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Use assert_ractor for separating test processes

This commit is contained in:
Hiroshi SHIBATA 2021-05-06 17:19:41 +09:00
parent 120b835fae
commit f2d6fa16e1
Notes: git 2021-05-06 19:02:37 +09:00

View file

@ -262,13 +262,12 @@ class TestPrime < Test::Unit::TestCase
assert_equal 861, (100_000..110_000).count(&:prime?)
end
=begin
# now Ractor should not use in test-all process
def test_prime_in_ractor
assert_ractor(<<~RUBY, require: 'prime')
# Test usage of private constant...
assert_equal false, Ractor.new { ((2**13-1) * (2**17-1)).prime? }.take
RUBY
end if defined?(Ractor)
=end
end
def test_eratosthenes_works_fine_after_timeout