Fix wrong test case title

Change-Id: Ifdffc432f56162d0b31c335e8ee3421ace6b48d2
This commit is contained in:
Takashi Kajinami 2025-02-16 19:23:09 +09:00
parent 8232536f9a
commit 71b77bf0f7
9 changed files with 9 additions and 9 deletions

@ -24,7 +24,7 @@ describe 'watcher::cinder_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('cinder_client/api_version').with_value(3)
should contain_watcher_config('cinder_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('cinder_client/region_name').with_value('regionOne')

@ -24,7 +24,7 @@ describe 'watcher::glance_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('glance_client/api_version').with_value(2)
should contain_watcher_config('glance_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('glance_client/region_name').with_value('regionOne')

@ -24,7 +24,7 @@ describe 'watcher::gnocchi_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('gnocchi_client/api_version').with_value(1)
should contain_watcher_config('gnocchi_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('gnocchi_client/region_name').with_value('regionOne')

@ -24,7 +24,7 @@ describe 'watcher::ironic_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('ironic_client/api_version').with_value(1)
should contain_watcher_config('ironic_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('ironic_client/region_name').with_value('regionOne')

@ -22,7 +22,7 @@ describe 'watcher::keystone_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('keystone_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('keystone_client/region_name').with_value('regionOne')
end

@ -24,7 +24,7 @@ describe 'watcher::neutron_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('neutron_client/api_version').with_value(2.0)
should contain_watcher_config('neutron_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('neutron_client/region_name').with_value('regionOne')

@ -24,7 +24,7 @@ describe 'watcher::nova_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('nova_client/api_version').with_value(2)
should contain_watcher_config('nova_client/endpoint_type').with_value('publicURL')
should contain_watcher_config('nova_client/region_name').with_value('regionOne')

@ -24,7 +24,7 @@ describe 'watcher::placement_client' do
}
end
it 'should set the defaults' do
it 'should set the overridden values' do
should contain_watcher_config('placement_client/api_version').with_value(1)
should contain_watcher_config('placement_client/interface').with_value('publicURL')
should contain_watcher_config('placement_client/region_name').with_value('regionOne')

@ -38,7 +38,7 @@ describe 'watcher::watcher_clients_auth' do
})
end
it 'should set the parameters' do
it 'should set the overridden values' do
should contain_watcher_config('watcher_clients_auth/auth_url').with_value('http://127.0.0.1:5000/')
should contain_watcher_config('watcher_clients_auth/username').with_value('alt_watcher')
should contain_watcher_config('watcher_clients_auth/project_name').with_value('alt_services')