0ea4ffa9a2
This removes the need for depending on a global site.pp, and depending on the checked out apt module to be called 'apt' as well. It pulls in stdlib via sub-modules as I don't have a better way to deal with dependencies yet. It has pinned the revision for stdlib to 2.2.1 which is the minimum required version for apt to work.
14 lines
390 B
Ruby
14 lines
390 B
Ruby
require 'rubygems'
|
|
require 'puppet'
|
|
require 'rspec-puppet'
|
|
|
|
def param_value(subject, type, title, param)
|
|
subject.resource(type, title).send(:parameters)[param.to_sym]
|
|
end
|
|
|
|
fixture_path = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures'))
|
|
|
|
RSpec.configure do |c|
|
|
c.module_path = File.join(fixture_path, 'modules')
|
|
c.manifest_dir = File.join(fixture_path, 'manifests')
|
|
end
|