puppet-cinder/spec/classes/cinder_ceilometer_spec.rb
Alex Schultz b5649e7e55 Update default notification_driver for ceilometer
This change updates the default notification_driver for the
cinder::ceilometer class to use the oslo.messaing method that was added
as part of icehouse/juno.

Change-Id: I99c3d54c64caefb4f2aa3c56c118bd2607a0ba96
Closes-Bug: 1476378
2015-07-20 15:27:37 -05:00

12 lines
264 B
Ruby

require 'spec_helper'
describe 'cinder::ceilometer' do
describe 'with default parameters' do
it 'contains default values' do
is_expected.to contain_cinder_config('DEFAULT/notification_driver').with(
:value => 'messagingv2')
end
end
end