puppet-glance/spec/classes/glance_spec.rb
Tobias Urdin b9ba7bf362 Fix openstackclient spec test
Dont check things inside openstacklib but
check that the openstacklib class is there.

Change-Id: Icfb25f685743770960140172a530f298526cabbf
2019-02-04 10:22:20 +01:00

44 lines
936 B
Ruby

require 'spec_helper'
describe 'glance' do
let :default_params do
{}
end
shared_examples_for 'glance' do
describe "when using default class parameters" do
let(:params) { default_params }
it { should contain_class('openstacklib::openstackclient') }
end
end
shared_examples_for 'glance Debian' do
let(:params) { default_params }
it { is_expected.to_not contain_package('glance') }
end
shared_examples_for 'glance RedHat' do
let(:params) { default_params }
it { is_expected.to contain_package('openstack-glance').with(
:tag => ['openstack', 'glance-package'],
)}
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 'glance'
it_configures "glance #{facts[:osfamily]}"
end
end
end