puppet-swift/spec/classes/swift_config_spec.rb
Yanis Guenane f69c046fe1 Add swift::config class
Other modules provide an X::config class to be able to specify
parameters that are not yet part of the module. Swift was missing this
feature. This commit aims to add it for puppet-swift.

Change-Id: Ifb6f78f177d9cc721f8388290c983c49137a2557
2015-07-20 11:58:53 +02:00

21 lines
567 B
Ruby

require 'spec_helper'
describe 'swift::config' do
let :params do
{ :swift_config => {
'DEFAULT/foo' => { 'value' => 'fooValue' },
'DEFAULT/bar' => { 'value' => 'barValue' },
'DEFAULT/baz' => { 'ensure' => 'absent' }
}
}
end
it 'configures arbitrary swift configurations' do
is_expected.to contain_swift_config('DEFAULT/foo').with_value('fooValue')
is_expected.to contain_swift_config('DEFAULT/bar').with_value('barValue')
is_expected.to contain_swift_config('DEFAULT/baz').with_ensure('absent')
end
end