27 lines
624 B
Ruby
27 lines
624 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::volume' do
|
|
|
|
let :pre_condition do
|
|
'class { "cinder": rabbit_password => "fpp", database_connection => "mysql://a:b@c/d" }'
|
|
end
|
|
|
|
let :facts do
|
|
{:osfamily => 'Debian'}
|
|
end
|
|
|
|
it { should contain_package('cinder-volume').with_ensure('present') }
|
|
it { should contain_service('cinder-volume').with(
|
|
'hasstatus' => true
|
|
)}
|
|
|
|
describe 'with manage_service false' do
|
|
let :params do
|
|
{ 'manage_service' => false }
|
|
end
|
|
it 'should not change the state of the service' do
|
|
should contain_service('cinder-volume').without_ensure
|
|
end
|
|
end
|
|
end
|