
Add notification_topics to configure AMQP topic used for OpenStack notifications. Change-Id: I2f319176f51190367bebe1e827b769a39819cc78
20 lines
591 B
Ruby
20 lines
591 B
Ruby
require 'spec_helper'
|
|
describe 'cinder::ceilometer' do
|
|
|
|
describe 'with default parameters' do
|
|
|
|
let :facts do
|
|
OSDefaults.get_facts({})
|
|
end
|
|
|
|
it 'contains default values' do
|
|
is_expected.to contain_cinder_config('oslo_messaging_notifications/transport_url').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
is_expected.to contain_cinder_config('oslo_messaging_notifications/driver').with(
|
|
:value => 'messagingv2')
|
|
is_expected.to contain_cinder_config('oslo_messaging_notifications/topics').with(
|
|
:value => '<SERVICE DEFAULT>')
|
|
end
|
|
end
|
|
end
|