12 lines
263 B
Ruby
12 lines
263 B
Ruby
|
require 'puppet'
|
||
|
require 'rubygems'
|
||
|
require 'rspec-puppet'
|
||
|
|
||
|
def param_value(subject, type, title, param)
|
||
|
subject.resource(type, title).send(:parameters)[param.to_sym]
|
||
|
end
|
||
|
|
||
|
RSpec.configure do |c|
|
||
|
c.module_path = File.join(File.dirname(__FILE__), '../../')
|
||
|
end
|