
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
12 lines
264 B
Ruby
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
|