diff options
author | Hiroshi SHIBATA <[email protected]> | 2020-12-22 18:18:32 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2020-12-22 19:44:27 +0900 |
commit | edb76e8765b7f165237c8ca6155cff1cc0f18cf9 (patch) | |
tree | 83f4ed70e245a6ee67b64e4b48bd9632691d3bad /test/json/ractor_test.rb | |
parent | f2f00e24fa14b8114d6c3bea11170b2b3e309719 (diff) |
Prepare to release json-2.5.0
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/3975
Diffstat (limited to 'test/json/ractor_test.rb')
-rw-r--r-- | test/json/ractor_test.rb | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/json/ractor_test.rb b/test/json/ractor_test.rb index 96d1528c5b..71105e55ec 100644 --- a/test/json/ractor_test.rb +++ b/test/json/ractor_test.rb @@ -4,10 +4,6 @@ require 'test_helper' class JSONInRactorTest < Test::Unit::TestCase - def setup - skip unless defined? Ractor - end - def test_generate assert_separately([], "#{<<~"begin;"}\n#{<<~'end;'}") begin; @@ -31,4 +27,4 @@ class JSONInRactorTest < Test::Unit::TestCase assert_equal(JSON.parse(expected_json), r.take) end; end -end +end if defined?(Ractor) |