aboutsummaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
blob: efff5b48b62ca1fa063c73b4f1a3a20f5db2eb32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'rubygems'
require 'puppet'
require 'rspec-puppet'
require 'mocha'
require 'puppetlabs_spec_helper'

def param_value(subject, type, title, param)
  subject.resource(type, title).send(:parameters)[param.to_sym]
end

Puppet.parse_config
puppet_module_path = Puppet[:modulepath]

fixture_path = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures'))

RSpec.configure do |c|
  fixture_module_path = File.join(fixture_path, 'modules')
  c.module_path = [fixture_module_path, puppet_module_path].join(":")
  c.manifest_dir = File.join(fixture_path, 'manifests')
  c.mock_with :mocha
end