Files
puppet-nova/spec/unit/provider/nova_config/ini_setting_spec.rb
Mathieu Gagné 0bcc43b803 Rename nova_config rspec tests
The unit tests got updated when we changed nova_config provider
from parsed to ini_settings, but we forgot to rename the file.
Renaming it to better reflect which provider is tested.

Change-Id: Ib3c0581b589e01db804ffba54c7faf7f329ce844
2013-05-09 17:35:36 -04:00

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(:nova_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::Nova_config.new(
{:name => 'DEFAULT/foo', :value => 'bar'}
)
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::Nova_config.new(
{:name => 'dude/foo', :value => 'bar'}
)
provider = provider_class.new(resource)
provider.section.should == 'dude'
provider.setting.should == 'foo'
end
end