test(packages_spec): prevent control for `bsd` family

* Refactor `package_name` using `case` like other formulas
This commit is contained in:
Imran Iqbal 2020-02-07 12:49:47 +00:00
parent 7257adefee
commit fe1af098b3
No known key found for this signature in database
GPG Key ID: 6D8629439D2B7819
1 changed files with 11 additions and 4 deletions

View File

@ -1,12 +1,19 @@
# Overide by Platform # Overide by Platform
package_name = 'openssh-server' package_name =
if platform[:family] == 'suse' case platform[:family]
package_name = 'openssh' when 'suse'
'openssh'
else
'openssh-server'
end end
control 'openssh package' do control 'openssh package' do
title 'should be installed' title 'should be installed'
only_if do
platform.family != 'bsd'
end
describe package(package_name) do describe package(package_name) do
it { should be_installed } it { should be_installed }
end end