Files
puppet-nova/spec/classes/nova_utilities_spec.rb
Pradeep Kilambi 79f7f3be01 Add libguestfs-tools package to nova utilities
Include libguestfs-tools package as part of nova
utilities class and update spec tests. This
package provides library and tools for managing
virtual disks such as guestmount which are useful
for nova-compute.

Change-Id: Ie63b1417b5d9f584a23baa52f26efc3ff71b8785
2014-02-07 12:39:12 -05:00

20 lines
581 B
Ruby

require 'spec_helper'
describe 'nova::utilities' do
describe 'on debian platforms' do
let :facts do
{ :osfamily => 'Debian' }
end
it 'installes utilities' do
should contain_package('unzip').with_ensure('present')
should contain_package('screen').with_ensure('present')
should contain_package('parted').with_ensure('present')
should contain_package('curl').with_ensure('present')
should contain_package('euca2ools').with_ensure('present')
should contain_package('libguestfs-tools').with_ensure('present')
end
end
end