mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 21:44:30 +02:00
7 lines
126 B
Ruby
7 lines
126 B
Ruby
require 'test/unit'
|
|
|
|
module TestSlowTimeout
|
|
def test_slow
|
|
sleep (ENV['sec'] || 3).to_i if on_parallel_worker?
|
|
end
|
|
end
|