Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion test/pathname/test_ractor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ def setup

def test_ractor_shareable
assert_separately([], "#{<<~"begin;"}\n#{<<~'end;'}")
class Ractor
alias value take
end unless Ractor.method_defined? :value # compat with Ruby 3.4 and olders

begin;
$VERBOSE = nil
require "pathname"
Expand All @@ -19,4 +23,3 @@ def test_ractor_shareable
end;
end
end