47d49e7780
This initial commit only targets a single node swift install on Natty based on 1.4.6
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
|