Merge "Add missing toggle for Mistral"

This commit is contained in:
Jenkins 2016-08-11 12:31:47 +00:00 committed by Gerrit Code Review
commit 92baa57f38
2 changed files with 2 additions and 0 deletions

View File

@ -456,6 +456,7 @@ class tempest(
'service_available/designate': value => $designate_available;
'service_available/horizon': value => $horizon_available;
'service_available/neutron': value => $neutron_available;
'service_available/mistral': value => $mistral_available;
'service_available/nova': value => $nova_available;
'service_available/murano': value => $murano_available;
'service_available/sahara': value => $sahara_available;

View File

@ -227,6 +227,7 @@ describe 'tempest' do
is_expected.to contain_tempest_config('service_available/gnocchi').with(:value => false)
is_expected.to contain_tempest_config('service_available/horizon').with(:value => true)
is_expected.to contain_tempest_config('service_available/neutron').with(:value => true)
is_expected.to contain_tempest_config('service_available/mistral').with(:value => false)
is_expected.to contain_tempest_config('service_available/nova').with(:value => true)
is_expected.to contain_tempest_config('service_available/sahara').with(:value => false)
is_expected.to contain_tempest_config('service_available/murano').with(:value => false)