1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/tool/test/testunit/tests_for_parallel/test4test_hungup.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
267 B
Ruby
Raw Normal View History

2021-10-05 22:31:38 -04:00
# frozen_string_literal: true
require_relative '../../../lib/test/unit'
class TestHung < Test::Unit::TestCase
def test_success_at_worker
assert true
end
def test_hungup_at_worker
if on_parallel_worker?
sleep 10
end
assert true
end
end