Sha256: 4c468577e6d688c0f04b80bf525d750f31f80b56399aed69ab4acc27fd29a329

Contents?: true

Size: 1022 Bytes

Versions: 158

Compression:

Stored size: 1022 Bytes

Contents

require 'beaker-rspec'

unless ENV['RS_PROVISION'] == 'no' or ENV['BEAKER_provision'] == 'no'
  # This will install the latest available package on el and deb based
  # systems fail on windows and osx, and install via gem on other *nixes
  foss_opts = {:default_action => 'gem_install'}

  if default.is_pe?; then
    install_pe;
  else
    install_puppet(foss_opts);
  end

  hosts.each do |host|
    unless host.is_pe?
      on host, "/bin/echo '' > #{host.puppet('hiera_config')}"
    end
    on host, "mkdir -p #{host['distmoduledir']}"
  end
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
    hosts.each do |host|
      on host, "mkdir -p #{host['distmoduledir']}/demo"
      %w(lib manifests metadata.json).each do |file|
        scp_to host, "#{proj_root}/#{file}", "#{host['distmoduledir']}/ntp"
      end
    end
  end
end

Version data entries

158 entries across 158 versions & 1 rubygems

Version Path
beaker-4.30.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.29.1 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.29.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.28.1 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.28.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.27.1 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.27.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.26.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.25.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.24.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.23.2 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.23.1 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.23.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.22.1 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.22.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.21.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.20.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.19.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.18.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.17.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb