Files
puppet-nova/spec/classes/nova_utilities_spec.rb
Mathieu Gagné 0903bb1615 Use ensure_packages to install utilities
* Remove nested declaration of nova::utilities::install

Change-Id: I232f8aae8889e448710157966de61510d7420c63
2013-08-07 22:35:11 -04:00

19 lines
509 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')
end
end
end