summaryrefslogtreecommitdiff
path: root/test/lib/zombie_hunter.rb
blob: 33bc46794127f6833da405e372ac6b5c9e1917f3 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

module ZombieHunter
  def after_teardown
    super
    assert_empty(Process.waitall)
  end
end

Test::Unit::TestCase.include ZombieHunter