diff options
author | Tomas Barton <barton.tomas@gmail.com> | 2013-10-12 16:45:19 +0200 |
---|---|---|
committer | Tomas Barton <barton.tomas@gmail.com> | 2013-10-12 16:46:20 +0200 |
commit | 9c2c7140876bbe20a9871543ba28b7522acdb213 (patch) | |
tree | dbaec693db7027496eb579d91fe3bbf65e8a31d3 /spec | |
parent | 2f2627cd49c93f7455b2e6294e11e16be99a27ac (diff) |
testing infrastructure
Diffstat (limited to 'spec')
-rw-r--r-- | spec/spec_helper_system.rb | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/spec/spec_helper_system.rb b/spec/spec_helper_system.rb new file mode 100644 index 0000000..462d2a1 --- /dev/null +++ b/spec/spec_helper_system.rb @@ -0,0 +1,26 @@ +require 'rspec-system/spec_helper' +require 'rspec-system-puppet/helpers' +require 'rspec-system-serverspec/helpers' +include Serverspec::Helper::RSpecSystem +include Serverspec::Helper::DetectOS +include RSpecSystemPuppet::Helpers + +RSpec.configure do |c| + # Project root + proj_root = File.expand_path(File.join(File.dirname(__FILE__), '..')) + + # Enable colour + c.tty = true + + c.include RSpecSystemPuppet::Helpers + + # This is where we 'setup' the nodes before running our tests + c.before :suite do + # Install puppet + puppet_install + + # Install modules and dependencies + puppet_module_install(:source => proj_root, :module_name => 'munin') + shell('puppet module install puppetlabs-stdlib') + end +end |