aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/test/support/cleanup.rb
blob: 0cb9c02fac8b33167a368b5b4eeb025e29e594ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module Hbc::CleanupHooks
  def after_teardown
    super
    Hbc.installed.each do |cask|
      Hbc::Installer.new(cask).purge_versioned_files
    end
  end
end

class MiniTest::Spec
  include Hbc::CleanupHooks
end