summaryrefslogtreecommitdiff
path: root/spec/spec_helper_acceptance.rb
diff options
context:
space:
mode:
authorAshley Penney <ashley.penney@puppetlabs.com>2014-03-12 18:22:23 +0000
committerAshley Penney <ashley.penney@puppetlabs.com>2014-03-12 18:22:23 +0000
commit9a3107fed17a1cfe9d829517ed91c345c6fec774 (patch)
treeb73c6f991adf2e343624697900377b79dcd05bf5 /spec/spec_helper_acceptance.rb
parente467d8f0847bb85fc8b0789d2eb44dcca862c5d7 (diff)
Add beaker framework.
This prepares the module for beaker acceptance tests.
Diffstat (limited to 'spec/spec_helper_acceptance.rb')
-rw-r--r--spec/spec_helper_acceptance.rb33
1 files changed, 33 insertions, 0 deletions
diff --git a/spec/spec_helper_acceptance.rb b/spec/spec_helper_acceptance.rb
new file mode 100644
index 0000000..4cefa75
--- /dev/null
+++ b/spec/spec_helper_acceptance.rb
@@ -0,0 +1,33 @@
+require 'beaker-rspec'
+
+UNSUPPORTED_PLATFORMS = []
+
+unless ENV['RS_PROVISION'] == 'no'
+ hosts.each do |host|
+ # Install Puppet
+ if host.is_pe?
+ install_pe
+ else
+ install_package host, 'rubygems'
+ on host, 'gem install puppet --no-ri --no-rdoc'
+ on host, "mkdir -p #{host['distmoduledir']}"
+ end
+ 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
+ # Install module and dependencies
+ puppet_module_install(:source => proj_root, :module_name => 'stdlib')
+ hosts.each do |host|
+ shell('/bin/touch /etc/puppet/hiera.yaml')
+ end
+ end
+end