11 lines
182 B
Ruby
Raw Normal View History

2016-09-24 13:52:43 +02:00
module MiniTest
class Spec
def after_teardown
super
Hbc.installed.each do |cask|
Hbc::Installer.new(cask).purge_versioned_files
end
2016-08-18 22:11:42 +03:00
end
end
end