diff options
author | Tomas Barton <barton.tomas@gmail.com> | 2014-01-25 19:08:04 +0100 |
---|---|---|
committer | Tomas Barton <barton.tomas@gmail.com> | 2014-01-25 19:08:04 +0100 |
commit | 2a0b58d6a8c2934ac2cd96364d6a3a6caee81a04 (patch) | |
tree | 40bd48a620d22d718e04b380f7fda0a7f0fc3505 /spec/spec_helper_system.rb | |
parent | 5486852c9e7a829209a640f031b6ee6f10bee239 (diff) | |
download | puppet-sshd-2a0b58d6a8c2934ac2cd96364d6a3a6caee81a04.tar.gz puppet-sshd-2a0b58d6a8c2934ac2cd96364d6a3a6caee81a04.tar.bz2 |
testing infastructure, rspec tests
Diffstat (limited to 'spec/spec_helper_system.rb')
-rw-r--r-- | spec/spec_helper_system.rb | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/spec/spec_helper_system.rb b/spec/spec_helper_system.rb new file mode 100644 index 0000000..44e0337 --- /dev/null +++ b/spec/spec_helper_system.rb @@ -0,0 +1,24 @@ +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 => 'sshd') + end +end |