ci(kitchen): add Kitchen tests

This commit is contained in:
Nicolas Rodriguez
2019-08-28 00:43:50 +02:00
parent 7f24db81cf
commit a4e6a665aa
13 changed files with 448 additions and 3 deletions
@@ -0,0 +1,15 @@
control 'Sysctl package' do
title 'should be installed'
package_name =
case os[:family]
when 'debian', 'suse'
'procps'
else
'procps-ng'
end
describe package(package_name) do
it { should be_installed }
end
end