Fix confusing parameter name in unit tests

This change fixes a confusing parameter name in unit tests which is not
consistent with the actual resource being tested.

Change-Id: I857fdcf6da6bf62ef6fd25987a118b499eb05908
This commit is contained in:
Takashi Kajinami 2021-09-11 22:41:40 +09:00
parent 32d05ebb36
commit ff7fd902fd
1 changed files with 4 additions and 4 deletions

View File

@ -4,16 +4,16 @@ require 'puppet/type/neutron_l3_agent_config'
describe 'Puppet::Type.type(:neutron_l3_agent_config)' do
before :each do
@neutron_fwaas_service_config = Puppet::Type.type(:neutron_l3_agent_config).new(:name => 'DEFAULT/foo', :value => 'bar')
@neutron_l3_agent_config = Puppet::Type.type(:neutron_l3_agent_config).new(:name => 'DEFAULT/foo', :value => 'bar')
end
it 'should autorequire the package that install the file' do
catalog = Puppet::Resource::Catalog.new
anchor = Puppet::Type.type(:anchor).new(:name => 'neutron::install::end')
catalog.add_resource anchor, @neutron_fwaas_service_config
dependency = @neutron_fwaas_service_config.autorequire
catalog.add_resource anchor, @neutron_l3_agent_config
dependency = @neutron_l3_agent_config.autorequire
expect(dependency.size).to eq(1)
expect(dependency[0].target).to eq(@neutron_fwaas_service_config)
expect(dependency[0].target).to eq(@neutron_l3_agent_config)
expect(dependency[0].source).to eq(anchor)
end