Add missing test coverage about [quota] driver option

Change-Id: If37facbca2fd5d0592b7f5472b317bc96f71eab3
This commit is contained in:
Takashi Kajinami 2024-04-19 14:19:54 +09:00
parent f011966893
commit 05db6ce121

View File

@ -7,6 +7,7 @@ describe 'nova::quota' do
let :default_params do
{
:driver => '<SERVICE DEFAULT>',
:instances => '<SERVICE DEFAULT>',
:cores => '<SERVICE DEFAULT>',
:ram => '<SERVICE DEFAULT>',
@ -42,6 +43,7 @@ describe 'nova::quota' do
context 'with provided parameters' do
before do
params.merge!({
:driver => 'nova.quota.DbQuotaDriver',
:instances => 20,
:cores => 40,
:ram => 102400,