Page MenuHomeSoftware Heritage

No OneTemporary

diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
index e54e779..d5203f7 100644
--- a/.rubocop_todo.yml
+++ b/.rubocop_todo.yml
@@ -1,6 +1,8 @@
-Style/HashSyntax:
- EnforcedStyle: hash_rockets
RSpec/NamedSubject:
Enabled: false
Lint/ScriptPermission:
Enabled: false
+Style/HashSyntax:
+ Exclude:
+ - spec/spec_helper.rb
+ EnforcedStyle: hash_rockets
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index e002d26..efd225b 100755
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,32 +1,30 @@
require 'puppetlabs_spec_helper/module_spec_helper'
require 'rspec-puppet-facts'
begin
require 'spec_helper_local' if File.file?(File.join(File.dirname(__FILE__), 'spec_helper_local.rb'))
rescue LoadError => loaderror
warn "Could not require spec_helper_local: #{loaderror.message}"
end
include RspecPuppetFacts
-# rubocop:disable Style/HashSyntax
default_facts = {
puppetversion: Puppet.version,
facterversion: Facter.version,
}
-# rubocop:enable Style/HashSyntax
default_facts_path = File.expand_path(File.join(File.dirname(__FILE__), 'default_facts.yml'))
default_module_facts_path = File.expand_path(File.join(File.dirname(__FILE__), 'default_module_facts.yml'))
if File.exist?(default_facts_path) && File.readable?(default_facts_path)
default_facts.merge!(YAML.safe_load(File.read(default_facts_path)))
end
if File.exist?(default_module_facts_path) && File.readable?(default_module_facts_path)
default_facts.merge!(YAML.safe_load(File.read(default_module_facts_path)))
end
RSpec.configure do |c|
c.default_facts = default_facts
end

File Metadata

Mime Type
text/x-diff
Expires
Fri, Jul 4, 12:53 PM (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3328163

Event Timeline