Files
puppet-aodh/spec/classes/aodh_client_spec.rb
Alex Schultz a6e6657811 Update tests to leverage rspec-puppet-facts
This change updates the test that currently do Debian/RedHat sets of
tests to use on_supported_os from rspec-puppet-facts. This improves the
over all coverage with the specific CentOS, Debian, RedHat and Ubuntu
flavors of facts.

Change-Id: Ibd7e2914419a492363de70d1e93c86abeeabc357
2016-01-13 14:22:06 -07:00

31 lines
642 B
Ruby

require 'spec_helper'
describe 'aodh::client' do
shared_examples_for 'aodh client' do
it { is_expected.to contain_class('aodh::params') }
it 'installs aodh client package' do
is_expected.to contain_package('python-ceilometerclient').with(
:ensure => 'present',
:name => 'python-ceilometerclient',
:tag => 'openstack',
)
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_configures 'aodh client'
end
end
end