Stop acceptance tests

This change is a prep work to retire puppet-panko, so that we can
remova all implementation related to puppet-panko from p-o-i.

Change-Id: I2658f5e9618cdaa51eafcea2539cde203d50c2df
This commit is contained in:
Takashi Kajinami 2021-05-18 19:22:59 +09:00
parent ef45d33876
commit a0081b19e4
1 changed files with 0 additions and 29 deletions

View File

@ -1,29 +0,0 @@
require 'spec_helper_acceptance'
describe 'basic panko' do
context 'default parameters' do
it 'should work with no errors' do
pp= <<-EOS
include openstack_integration
include openstack_integration::repos
include openstack_integration::apache
include openstack_integration::mysql
include openstack_integration::keystone
include openstack_integration::panko
EOS
# Run it twice and test for idempotency
apply_manifest(pp, :catch_failures => true)
apply_manifest(pp, :catch_changes => true)
end
if os[:family].casecmp('RedHat') == 0
describe port(8977) do
it { is_expected.to be_listening }
end
end
end
end