mirror of
https://github.com/saltstack-formulas/packages-formula.git
synced 2025-04-17 10:10:27 +00:00

* ci(example): remove blockbox as example of raw * ci(archive): remove docker-compose.yml test
19 lines
381 B
Ruby
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
|