Add test to ensure Zap does not have an uninstall_phase.

This commit is contained in:
Markus Reiter 2017-02-10 08:00:43 +01:00
parent 486fa0bf19
commit 2af4906456

View File

@ -0,0 +1,21 @@
require "spec_helper"
describe Hbc::Artifact::Zap do
let(:cask) { Hbc::CaskLoader.load_from_file(TEST_FIXTURE_DIR/"cask/Casks/with-installable.rb") }
let(:zap_artifact) {
Hbc::Artifact::Zap.new(cask)
}
before do
shutup do
InstallHelper.install_without_artifacts(cask)
end
end
describe "#uninstall_phase" do
subject { zap_artifact }
it { is_expected.not_to respond_to(:uninstall_phase) }
end
end