diff options
Diffstat (limited to 'tool/lib/zombie_hunter.rb')
-rw-r--r-- | tool/lib/zombie_hunter.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tool/lib/zombie_hunter.rb b/tool/lib/zombie_hunter.rb new file mode 100644 index 0000000000..33bc467941 --- /dev/null +++ b/tool/lib/zombie_hunter.rb @@ -0,0 +1,10 @@ +# frozen_string_literal: true + +module ZombieHunter + def after_teardown + super + assert_empty(Process.waitall) + end +end + +Test::Unit::TestCase.include ZombieHunter |