summaryrefslogtreecommitdiff
path: root/test/lib/zombie_hunter.rb
blob: 2b81e396aca42e7b17f0569179fd5b0962a9d3d2 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true
module ZombieHunter
  def after_teardown
    super
    assert_empty(Process.waitall)
  end
end

Test::Unit::TestCase.include ZombieHunter