Sha256: 0e329280b619cfb61f4aba84ce7b39a0ed30dd0ccf82792edf3b44e37ec84a7c
Contents?: true
Size: 845 Bytes
Versions: 16
Compression:
Stored size: 845 Bytes
Contents
require 'puppetlabs_spec_helper/module_spec_helper' require 'rspec-puppet-utils' require 'rspec_junit_formatter' RSpec.configure do |c| c.parser = 'future' c.formatter = 'documentation' # Also add JUnit output in case people want to use that c.add_formatter('RSpecJUnitFormatter','<%= repo.tempdir %>/spec.xml') c.environmentpath = '<%= environmentpath %>' c.module_path = '<%= modulepath %>' <% if repo.hiera_config_file_relative_path %> c.hiera_config = '<%= environmentpath %>/production/<%= repo.hiera_config_file_relative_path %>' <% end -%> c.manifest = '<%= repo.temp_manifest %>' ENV['STRICT_VARIABLES'] = '<%= self.strict_variables %>' <% if ENV['SHOW_PUPPET_OUTPUT'] and ENV['SHOW_PUPPET_OUTPUT'].downcase == 'true' %> Puppet::Util::Log.level = :debug Puppet::Util::Log.newdestination(:console) <% end -%> end
Version data entries
16 entries across 16 versions & 1 rubygems