
Add possibility to configure container_sync middleware. Also allow to configure swift container-sync-realms, which specifying the allowable clusters and their information, which is required for container_sync. Change-Id: I183841cca3daf72a30db160b88c9e3a9335ad7dc
18 lines
432 B
Ruby
18 lines
432 B
Ruby
#
|
|
# Author: Denis Egorenko <degorenko@mirantis.com>
|
|
#
|
|
# Tests for swift::proxy::container_sync
|
|
#
|
|
require 'spec_helper'
|
|
|
|
describe 'swift::proxy::container_sync' do
|
|
|
|
let :facts do
|
|
{}
|
|
end
|
|
|
|
it { is_expected.to contain_concat_fragment('swift_container_sync').with_content(/\[filter:container_sync\]/) }
|
|
it { is_expected.to contain_concat_fragment('swift_container_sync').with_content(/use = egg:swift#container_sync/) }
|
|
|
|
end
|