diff options
author | Gabriel Nagy <gabriel.nagy@puppet.com> | 2021-09-30 19:31:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-30 19:31:15 +0300 |
commit | 8f8c5a5b8f2addd157d353740202539218f2be9c (patch) | |
tree | 5ff1f5bbd08e7d556439df0f18756f10aeb34bf3 /spec/spec_helper.rb | |
parent | 0d92e9f24280df1082ec8dfa2baf8778b853e0ca (diff) | |
parent | 855f3bba8bb1c29ea1ec2dae471c90bec7786f01 (diff) | |
download | puppet-augeas_core-8f8c5a5b8f2addd157d353740202539218f2be9c.tar.gz puppet-augeas_core-8f8c5a5b8f2addd157d353740202539218f2be9c.tar.bz2 |
Merge pull request #41 from BobosilaVictor/MODULES-11197
(MODULES-11197) Update puppetlabs-augeas_core to latest pdk template
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 29615cd..9b1fa6f 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,3 +1,9 @@ +# frozen_string_literal: true + +RSpec.configure do |c| + c.mock_with :rspec +end + require 'puppetlabs_spec_helper/module_spec_helper' require 'rspec-puppet-facts' @@ -31,16 +37,28 @@ default_facts.each do |fact, value| end RSpec.configure do |c| - c.mock_with :rspec c.default_facts = default_facts c.before :each do # set to strictest setting for testing # by default Puppet runs at warning level Puppet.settings[:strict] = :warning + Puppet.settings[:strict_variables] = true end c.filter_run_excluding(bolt: true) unless ENV['GEM_BOLT'] c.after(:suite) do end + + # Filter backtrace noise + backtrace_exclusion_patterns = [ + %r{spec_helper}, + %r{gems}, + ] + + if c.respond_to?(:backtrace_exclusion_patterns) + c.backtrace_exclusion_patterns = backtrace_exclusion_patterns + elsif c.respond_to?(:backtrace_clean_patterns) + c.backtrace_clean_patterns = backtrace_exclusion_patterns + end end # Ensures that a module is defined |