mirror of
https://github.com/voxpupuli/puppet-hashi_stack.git
synced 2025-07-09 19:05:34 +01:00
rubocop: autofix
This commit is contained in:
parent
d920244e2f
commit
41decd6cee
4 changed files with 16 additions and 7 deletions
|
@ -1,17 +1,17 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
# Managed by modulesync - DO NOT EDIT
|
||||
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/
|
||||
|
||||
# puppetlabs_spec_helper will set up coverage if the env variable is set.
|
||||
# We want to do this if lib exists and it hasn't been explicitly set.
|
||||
ENV['COVERAGE'] ||= 'yes' if Dir.exist?(File.expand_path('../../lib', __FILE__))
|
||||
ENV['COVERAGE'] ||= 'yes' if Dir.exist?(File.expand_path('../lib', __dir__))
|
||||
|
||||
require 'voxpupuli/test/spec_helper'
|
||||
|
||||
if File.exist?(File.join(__dir__, 'default_module_facts.yml'))
|
||||
facts = YAML.safe_load(File.read(File.join(__dir__, 'default_module_facts.yml')))
|
||||
if facts
|
||||
facts.each do |name, value|
|
||||
add_custom_fact name.to_sym, value
|
||||
end
|
||||
facts&.each do |name, value|
|
||||
add_custom_fact name.to_sym, value
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue