mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-10 04:50:34 +00:00
9eb93da056
- use beaker/puppet_install_helper to install puppet - installed dependency modules like they are listed in the metadata.json - changed apt repo source from https to http, https produced ssl errors under certain ruby versions and needs additional packages on some systems and the packages are signed anyways
23 lines
673 B
Ruby
23 lines
673 B
Ruby
require 'beaker-rspec'
|
|
require 'beaker/puppet_install_helper'
|
|
|
|
run_puppet_install_helper unless ENV['BEAKER_provision'] == 'no'
|
|
|
|
RSpec.configure do |c|
|
|
# Project root
|
|
module_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
|
|
puppet_module_install(:source => module_root, :module_name => 'fluentd')
|
|
hosts.each do |host|
|
|
on host, puppet('module', 'install', 'puppetlabs-stdlib', '--version', '4.6.0')
|
|
on host, puppet('module', 'install', 'puppetlabs-apt', '--version', '2.0.0')
|
|
end
|
|
end
|
|
end
|