fuel-library/deployment/puppet/vmware/spec/classes/controller_spec.rb
Alex Schultz 7117b6cfd4 Old ocf file cleanup
This change removes missed ocf scripts from deployment/ and moves
any still referenced files to files/fuel-ha-utils. Also cleans up
commented out ocf files from the puppet code.

Change-Id: Ie6bd1bae40fab175aff14274026bf506f28eb0e4
Related-Bug: 1457441
2015-07-23 13:44:07 -05:00

27 lines
628 B
Ruby

require 'spec_helper'
describe 'vmware::controller' do
let(:facts) { { :osfamily => 'debian' } }
it 'must disable nova-compute' do
should contain_nova__generic_service('compute').with({
'enabled' => 'false'
})
end
it 'must properly configure novncproxy_base_url' do
should contain_nova_config('DEFAULT/novncproxy_base_url').with({
'value' => "http://0.0.0.0:6080/vnc_auto.html",
})
end
it 'must install cirros-testvmware package' do
should contain_package('cirros-testvmware')
end
it 'must install python-suds package' do
should contain_package('python-suds')
end
end