
Add change_password_available parameter so that we can configure tempest to not run tests that require changing the VMs password. Change-Id: I98067790530ab153e1a316c4789fc1fb2ee96b79
30 lines
619 B
Ruby
30 lines
619 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'openstack::provision' do
|
|
|
|
let :facts do
|
|
{
|
|
:osfamily => 'Debian'
|
|
}
|
|
end
|
|
|
|
describe 'should be possible to override resize_available' do
|
|
let :params do
|
|
{
|
|
:configure_tempest => true,
|
|
:resize_available => true,
|
|
:change_password_available => true,
|
|
:version_to_test => 'stable/grizzly'
|
|
}
|
|
end
|
|
|
|
it { should contain_class('tempest').with(
|
|
:resize_available => true,
|
|
:change_password_available => true,
|
|
:version_to_test => 'stable/grizzly'
|
|
) }
|
|
|
|
end
|
|
|
|
end
|