13 lines
214 B
Ruby
Raw Normal View History

2016-08-18 22:11:42 +03:00
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