2012-11-16 15:38:07 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'swift::proxy::formpost' do
|
2018-05-17 00:13:44 +02:00
|
|
|
shared_examples 'swift::proxy::formpost' do
|
|
|
|
it { should contain_swift_proxy_config('filter:formpost/use').with_value('egg:swift#formpost') }
|
2012-11-16 15:38:07 +01:00
|
|
|
end
|
|
|
|
|
2018-05-17 00:13:44 +02:00
|
|
|
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
|
2012-11-16 15:38:07 +01:00
|
|
|
|
2018-05-17 00:13:44 +02:00
|
|
|
it_configures 'swift::proxy::formpost'
|
|
|
|
end
|
|
|
|
end
|
2012-11-16 15:38:07 +01:00
|
|
|
end
|