packages-formula/test/integration/default/controls/archives_spec.rb
N 5712cab43e
ci(example): remove blockbox as example of raw (#86)
* ci(example): remove blockbox as example of raw

* ci(archive): remove docker-compose.yml test
2022-01-25 16:36:26 -03:00

19 lines
381 B
Ruby

# frozen_string_literal: true
### ARCHIVE PKGS
control 'Archive packages' do
title 'should be downloaded and installed'
desc '(only testing in the Debian platform, as these are OS-independent'
only_if do
os.debian?
end
%w[
phantomjs-2.1.1-linux-x86_64/bin
].each do |f|
describe file("/usr/local/src/#{f}") do
it { should exist }
end
end
end