mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
10 lines
169 B
Ruby
10 lines
169 B
Ruby
# frozen_string_literal: true
|
|
|
|
module ZombieHunter
|
|
def after_teardown
|
|
super
|
|
assert_empty(Process.waitall)
|
|
end
|
|
end
|
|
|
|
Test::Unit::TestCase.include ZombieHunter
|