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.42.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.41.2 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.41.1 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.41.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.40.2 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.40.1 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.40.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.39.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.38.1 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.38.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.37.2 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.37.1 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.37.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.36.1 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.36.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.35.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.34.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.33.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.32.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb
beaker-4.31.0 acceptance/fixtures/module/spec/spec_helper_acceptance.rb