mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 14:26:45 -06:00
10 lines
198 B
Ruby
10 lines
198 B
Ruby
module Cask::CleanupHooks
|
|
def after_teardown
|
|
super
|
|
Cask.all.select(&:installed?).each { |c| Cask::Installer.uninstall(c) }
|
|
end
|
|
end
|
|
|
|
class MiniTest::Spec
|
|
include Cask::CleanupHooks
|
|
end
|