e14ab290e7
Change-Id: I87e35693d589258c877ffeaa47304e40107e5542
28 lines
601 B
Ruby
28 lines
601 B
Ruby
require 'spec_helper_acceptance'
|
|
|
|
describe 'basic tempest' do
|
|
|
|
context 'default parameters' do
|
|
|
|
it 'should work with no errors' do
|
|
pp= <<-EOS
|
|
include openstack_integration
|
|
include openstack_integration::repos
|
|
|
|
class { 'tempest':
|
|
setup_venv => true,
|
|
configure_images => false,
|
|
configure_networks => false,
|
|
manage_tests_packages => true,
|
|
}
|
|
EOS
|
|
|
|
|
|
# Run it twice and test for idempotency
|
|
apply_manifest(pp, :catch_failures => true)
|
|
apply_manifest(pp, :catch_changes => true)
|
|
end
|
|
|
|
end
|
|
end
|