puppet-swift/spec/classes/swift_internal_client_catch_errors_spec.rb
Takashi Kajinami efcef86de7 Support customizing internal-client.conf
This change introduces capability to customize internal-client.conf,
which is used by several daemon processes like container-sharder.

Closes-Bug: #1986599
Related-Bug: #1921319
Change-Id: I200e3a4ff323a07778ec6c4d7dd96824c72a12cf
2022-08-16 11:26:43 +09:00

20 lines
533 B
Ruby

require 'spec_helper'
describe 'swift::internal_client::catch_errors' do
shared_examples 'swift::internal_client::catch_errors' do
it { should contain_swift_internal_client_config('filter:catch_errors/use').with_value('egg:swift#catch_errors') }
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 'swift::internal_client::catch_errors'
end
end
end