puppet-designate/spec/unit/provider/designate_config/ini_setting_spec.rb

39 lines
1.1 KiB
Ruby

#
# these tests are a little concerning b/c they are hacking around the
# modulepath, so these tests will not catch issues that may eventually arise
# related to loading these plugins.
# I could not, for the life of me, figure out how to programatcally set the modulepath
$LOAD_PATH.push(
File.join(
File.dirname(__FILE__),
'..',
'..',
'..',
'fixtures',
'modules',
'inifile',
'lib')
)
require 'spec_helper'
provider_class = Puppet::Type.type(:designate_config).provider(:ini_setting)
describe provider_class do
it 'should default to the default setting when no other one is specified' do
resource = Puppet::Type::Designate_config.new(
{:name => 'DEFAULT/foo', :value => 'plop'}
)
provider = provider_class.new(resource)
provider.section.should == 'DEFAULT'
provider.setting.should == 'foo'
end
it 'should allow setting to be set explicitly' do
resource = Puppet::Type::Designate_config.new(
{:name => 'boo/zoo', :value => 'plop'}
)
provider = provider_class.new(resource)
provider.section.should == 'boo'
provider.setting.should == 'zoo'
end
end