2011-12-19 16:25:35 +01:00
|
|
|
require 'puppet'
|
2012-02-09 20:26:00 +01:00
|
|
|
require 'rspec'
|
2011-12-19 16:25:35 +01:00
|
|
|
require 'rspec-puppet'
|
|
|
|
|
2012-02-09 20:26:00 +01:00
|
|
|
def param_value(subject, type, title, param)
|
|
|
|
subject.resource(type, title).send(:parameters)[param.to_sym]
|
|
|
|
end
|
|
|
|
|
2011-12-19 16:25:35 +01:00
|
|
|
RSpec.configure do |c|
|
2012-02-09 20:26:00 +01:00
|
|
|
c.module_path = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/modules'))
|
|
|
|
# Using an empty site.pp file to avoid: https://github.com/rodjek/rspec-puppet/issues/15
|
|
|
|
c.manifest_dir = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/manifests'))
|
|
|
|
# Use fixtures for config file mainly to support using our own hiera.yaml settings.
|
|
|
|
# Pending: https://github.com/rodjek/rspec-puppet/pull/21
|
|
|
|
# c.config = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/puppet.conf'))
|
2011-12-19 16:25:35 +01:00
|
|
|
end
|