13 lines
214 B
Ruby
13 lines
214 B
Ruby
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
|