e7d670b13a
Moves all spec tests over to using rspec-puppet-facts and runs the tests for all our supported operating systems. Change-Id: Ie2d60acac835affaf46a5276c9755640a723bca4
20 lines
488 B
Ruby
20 lines
488 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::proxy::healthcheck' do
|
|
shared_examples 'swift::proxy::healthcheck' do
|
|
it { should contain_swift_proxy_config('filter:healthcheck/use').with_value('egg:swift#healthcheck') }
|
|
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::proxy::healthcheck'
|
|
end
|
|
end
|
|
end
|