]> review.fuel-infra Code Review - puppet-modules/puppetlabs-apt.git/commitdiff
fallback to the puppet modulepath if a module is missing from fixtures
authorBranan Purvine-Riley <branan@puppetlabs.com>
Tue, 22 May 2012 20:10:05 +0000 (13:10 -0700)
committerBranan Purvine-Riley <branan@puppetlabs.com>
Tue, 22 May 2012 20:27:28 +0000 (13:27 -0700)
spec/spec_helper.rb

index 46fe2371c96ac7301a50a8575c465fbdfab0ff88..660e21823c075e580de649459aba06d32cc0c998 100644 (file)
@@ -6,9 +6,13 @@ def param_value(subject, type, title, param)
   subject.resource(type, title).send(:parameters)[param.to_sym]
 end
 
+Puppet.parse_config
+puppet_module_path = Puppet[:modulepath]
+
 fixture_path = File.expand_path(File.join(File.dirname(__FILE__), 'fixtures'))
 
 RSpec.configure do |c|
-  c.module_path = File.join(fixture_path, 'modules')
+  fixture_module_path = File.join(fixture_path, 'modules')
+  c.module_path = [fixture_module_path, puppet_module_path].join(":")
   c.manifest_dir = File.join(fixture_path, 'manifests')
 end