e7d670b13a
Moves all spec tests over to using rspec-puppet-facts and runs the tests for all our supported operating systems. Change-Id: Ie2d60acac835affaf46a5276c9755640a723bca4
22 lines
481 B
Ruby
22 lines
481 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'swift::xfs' do
|
|
shared_examples 'swift::xfs' do
|
|
['xfsprogs', 'parted'].each do |present_package|
|
|
it { is_expected.to contain_package(present_package).with_ensure('present') }
|
|
end
|
|
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::xfs'
|
|
end
|
|
end
|
|
end
|