Translated RSpec's Syntax deprecated from ruby archives in Puppet-Cinder/spec/classes. -Upgrade from RSpec 2 to RSpec 3 on corresponding files. Partial-Bug: #1816857 Change-Id: I75cd0f348465c91500a8d3b8cd82ab53b3224c04
24 lines
776 B
Ruby
24 lines
776 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'cinder::ceilometer' do
|
|
shared_examples 'cinder::ceilometer' do
|
|
context 'with default parameters' do
|
|
it { is_expected.to contain_cinder_config('oslo_messaging_notifications/transport_url').with_value('<SERVICE DEFAULT>') }
|
|
it { is_expected.to contain_cinder_config('oslo_messaging_notifications/driver').with_value('messagingv2') }
|
|
it { is_expected.to contain_cinder_config('oslo_messaging_notifications/topics').with_value('<SERVICE DEFAULT>') }
|
|
end
|
|
end
|
|
|
|
on_supported_os({
|
|
:supported_os => OSDefaults.get_supported_os
|
|
}).each do |os,facts|
|
|
context "on #{os}" do
|
|
let (:facts) do
|
|
facts.merge!(OSDefaults.get_facts())
|
|
end
|
|
|
|
it_behaves_like 'cinder::ceilometer'
|
|
end
|
|
end
|
|
end
|