mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
29 lines
629 B
Ruby
29 lines
629 B
Ruby
|
# frozen_string_literal: true
|
||
|
require 'test/unit'
|
||
|
|
||
|
class TestStringScannerRactor < Test::Unit::TestCase
|
||
|
def setup
|
||
|
skip unless defined? Ractor
|
||
|
end
|
||
|
|
||
|
def test_ractor
|
||
|
assert_in_out_err([], <<-"end;", ["stra", " ", "strb", " ", "strc"], [])
|
||
|
require "strscan"
|
||
|
$VERBOSE = nil
|
||
|
r = Ractor.new do
|
||
|
s = StringScanner.new("stra strb strc", true)
|
||
|
[
|
||
|
s.scan(/\\w+/),
|
||
|
s.scan(/\\s+/),
|
||
|
s.scan(/\\w+/),
|
||
|
s.scan(/\\s+/),
|
||
|
s.scan(/\\w+/),
|
||
|
s.scan(/\\w+/),
|
||
|
s.scan(/\\w+/)
|
||
|
]
|
||
|
end
|
||
|
puts r.take.compact
|
||
|
end;
|
||
|
end
|
||
|
end
|