puppet-aodh/spec/acceptance/aodh_wsgi_apache_spec.rb
ZhongShengping 18db7cd4b4 Switch acceptance tests to use integration classes
Change-Id: I4f21dff29d557474302b233fc40e6c6bfc219987
2018-03-14 10:37:11 +08:00

29 lines
672 B
Ruby

require 'spec_helper_acceptance'
describe 'basic aodh' do
context 'default parameters' do
it 'should work with no errors' do
pp= <<-EOS
include ::openstack_integration
include ::openstack_integration::repos
include ::openstack_integration::rabbitmq
include ::openstack_integration::mysql
include ::openstack_integration::keystone
include ::openstack_integration::aodh
EOS
# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
describe port(8042) do
it { is_expected.to be_listening }
end
end
end