X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=3rdparty%2Fmodules%2Fopenstacklib%2Fspec%2Fspec_helper_acceptance.rb;fp=3rdparty%2Fmodules%2Fopenstacklib%2Fspec%2Fspec_helper_acceptance.rb;h=0000000000000000000000000000000000000000;hb=6e1426dc77fb4e5d51f07c187c6f2219431dc31e;hp=1879cbfd49bbb89f3b025cee5d717a92bc9ce9e5;hpb=87423ba664cd5f2bb462ebadd08b1a90d0fe1c8d;p=mirror%2Fdsa-puppet.git diff --git a/3rdparty/modules/openstacklib/spec/spec_helper_acceptance.rb b/3rdparty/modules/openstacklib/spec/spec_helper_acceptance.rb deleted file mode 100644 index 1879cbfd4..000000000 --- a/3rdparty/modules/openstacklib/spec/spec_helper_acceptance.rb +++ /dev/null @@ -1,42 +0,0 @@ -require 'beaker-rspec' - -hosts.each do |host| - - install_puppet - - on host, "mkdir -p #{host['distmoduledir']}" -end - -RSpec.configure do |c| - # Project root - proj_root = File.expand_path(File.join(File.dirname(__FILE__), '..')) - - # Readable test descriptions - c.formatter = :documentation - - # Configure all nodes in nodeset - c.before :suite do - # Install module and dependencies - hosts.each do |host| - - # install git - install_package host, 'git' - - # clean out any module cruft - shell('rm -fr /etc/puppet/modules/*') - - # install library modules from the forge - on host, puppet('module','install','puppetlabs-mysql'), { :acceptable_exit_codes => 0 } - on host, puppet('module','install','puppetlabs-apache'), { :acceptable_exit_codes => 0 } - on host, puppet('module','install','puppetlabs-postgresql'), { :acceptable_exit_codes => 0 } - on host, puppet('module','install','stahnma-epel'), { :acceptable_exit_codes => 0 } - # until https://github.com/tamaskozak/puppetlabs-rabbitmq/commit/8bbfe320035fae2ae900211501008d63dc3c171c is part of a release - shell('git clone https://github.com/puppetlabs/puppetlabs-rabbitmq /etc/puppet/modules/rabbitmq') - shell('git clone https://git.openstack.org/openstack/puppet-openstack_extras /etc/puppet/modules/openstack_extras') - # Install the module being tested - puppet_module_install(:source => proj_root, :module_name => 'openstacklib') - # List modules installed to help with debugging - on hosts[0], puppet('module','list'), { :acceptable_exit_codes => 0 } - end - end -end