Merge "Fix confusing parameter name in unit tests"

This commit is contained in:
Zuul 2021-09-14 18:17:43 +00:00 committed by Gerrit Code Review
commit 405e05abdd
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