summaryrefslogtreecommitdiff
path: root/spec/spec_helper_system.rb
diff options
context:
space:
mode:
authorAshley Penney <apenney@gmail.com>2013-07-09 14:10:19 -0700
committerAshley Penney <apenney@gmail.com>2013-07-09 14:10:19 -0700
commit75776217283ba2531d9025b34db567dc06f2ff65 (patch)
treed1e45b40789bb77cf88ca38c03ba1a3841d20229 /spec/spec_helper_system.rb
parent451c93a46c42c9659cc0930a301746cf103dbeb2 (diff)
parentb9ab67401404d13e535d815c8a3eafb78cf143fd (diff)
Merge pull request #66 from apenney/refactor-round-1
WIP: Refactoring of NTP module
Diffstat (limited to 'spec/spec_helper_system.rb')
-rw-r--r--spec/spec_helper_system.rb26
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..d520846
--- /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 => 'ntp')
+ shell('puppet module install puppetlabs-stdlib')
+ end
+end