
Switch Nova to use $::os_service_default Change logging.pp, db.pp and tests. Change-Id: I928a93534c6d27c020b7afb5b7dda32c379e9d62 Related-bug: #1515273
20 lines
651 B
Ruby
20 lines
651 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'nova::utilities' do
|
|
|
|
describe 'on debian platforms' do
|
|
let :facts do
|
|
@default_facts.merge({ :osfamily => 'Debian' })
|
|
end
|
|
|
|
it 'installes utilities' do
|
|
is_expected.to contain_package('unzip').with_ensure('present')
|
|
is_expected.to contain_package('screen').with_ensure('present')
|
|
is_expected.to contain_package('parted').with_ensure('present')
|
|
is_expected.to contain_package('curl').with_ensure('present')
|
|
is_expected.to contain_package('euca2ools').with_ensure('present')
|
|
is_expected.to contain_package('libguestfs-tools').with_ensure('present')
|
|
end
|
|
end
|
|
end
|