brew/Library/Homebrew/test/cask/dsl/uninstall_postflight_spec.rb
2020-11-23 05:48:43 +01:00

12 lines
316 B
Ruby

# typed: false
# frozen_string_literal: true
require "test/cask/dsl/shared_examples/base"
describe Cask::DSL::UninstallPostflight, :cask do
let(:cask) { Cask::CaskLoader.load(cask_path("basic-cask")) }
let(:dsl) { described_class.new(cask, class_double(SystemCommand)) }
it_behaves_like Cask::DSL::Base
end