
control_exchange is duplicated in init.pp and ceilometer.pp which could create duplicate declaration when declaring cinder and cinder::ceilometer on same node. Closes-bug #1266259 Signed-off-by: Emilien Macchi <emilien.macchi@enovance.com> Change-Id: Ic1c5c880c421f43d2a125b2b5b58630fc55bc9c8
12 lines
290 B
Ruby
12 lines
290 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::ceilometer' do
|
|
|
|
describe 'with default parameters' do
|
|
it 'contains default values' do
|
|
should contain_cinder_config('DEFAULT/notification_driver').with(
|
|
:value => 'cinder.openstack.common.notifier.rpc_notifier')
|
|
end
|
|
end
|
|
end
|