18b010975c
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: If683fbd098e701a3c4da91941cf818b18b41b209
27 lines
623 B
Ruby
27 lines
623 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'glance::client' do
|
|
|
|
shared_examples 'glance client' do
|
|
it { is_expected.to contain_class('glance::params') }
|
|
it { is_expected.to contain_package('python-glanceclient').with(
|
|
:name => 'python-glanceclient',
|
|
:ensure => 'present',
|
|
:tag => ['openstack', 'glance-support-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 client'
|
|
end
|
|
end
|
|
end
|