Files
puppet-openstack/spec/classes/openstack_provision_spec.rb
Dan Bode e98e906d8c Add change_password_available param
Add change_password_available parameter so that we can
configure tempest to not run tests that require
changing the VMs password.

Change-Id: I98067790530ab153e1a316c4789fc1fb2ee96b79
2013-07-22 16:09:47 -07:00

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