brew/Library/Homebrew/cask/test/cask/dsl/uninstall_preflight_test.rb

13 lines
286 B
Ruby
Raw Normal View History

2016-08-18 22:11:42 +03:00
require "test_helper"
describe Hbc::DSL::UninstallPreflight do
let(:cask) { Hbc.load("basic-cask") }
let(:dsl) { Hbc::DSL::UninstallPreflight.new(cask, Hbc::FakeSystemCommand) }
it_behaves_like Hbc::DSL::Base
it_behaves_like Hbc::Staged do
let(:staged) { dsl }
end
end