2017-03-05 19:26:56 +01:00
|
|
|
describe Hbc::Artifact::Zap, :cask do
|
2017-10-07 15:58:49 +02:00
|
|
|
let(:cask) { Hbc::CaskLoader.load(cask_path("with-installable")) }
|
2017-02-10 08:00:43 +01:00
|
|
|
|
|
|
|
let(:zap_artifact) {
|
2017-10-04 17:54:52 +02:00
|
|
|
cask.artifacts.find { |a| a.is_a?(described_class) }
|
2017-02-10 08:00:43 +01:00
|
|
|
}
|
|
|
|
|
2018-03-25 13:30:37 +01:00
|
|
|
before do
|
2017-07-29 19:55:05 +02:00
|
|
|
InstallHelper.install_without_artifacts(cask)
|
2017-02-10 08:00:43 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "#uninstall_phase" do
|
|
|
|
subject { zap_artifact }
|
|
|
|
|
|
|
|
it { is_expected.not_to respond_to(:uninstall_phase) }
|
|
|
|
end
|
|
|
|
end
|