зеркало из https://github.com/github/ruby.git
11 строки
169 B
Ruby
11 строки
169 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module ZombieHunter
|
||
|
def after_teardown
|
||
|
super
|
||
|
assert_empty(Process.waitall)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
Test::Unit::TestCase.include ZombieHunter
|