
This commit resolves failing tests from glance::api and glance::registry related to recent refactors. It also adds tests for all of the new api fragment classes/defines.
18 lines
551 B
Ruby
18 lines
551 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
|
|
|
|
def verify_contents(subject, title, expected_lines)
|
|
content = subject.resource('file', title).send(:parameters)[:content]
|
|
(content.split("\n") & expected_lines).should == expected_lines
|
|
end
|
|
|
|
RSpec.configure do |c|
|
|
c.manifest_dir = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures/manifests'))
|
|
c.module_path = File.join(File.dirname(__FILE__), '../../')
|
|
end
|