Skip to content

Commit 87701ae

Browse files
committed
(maint) - Fix remaining rubocop violations
1 parent fc8d234 commit 87701ae

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.rubocop_todo.yml

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2023-06-05 13:23:40 UTC using RuboCop version 1.48.1.
3+
# on 2023-06-05 14:12:51 UTC using RuboCop version 1.48.1.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new
@@ -41,6 +41,10 @@ RSpec/DescribeClass:
4141
RSpec/ExampleLength:
4242
Max: 21
4343

44+
# Offense count: 3
45+
RSpec/MultipleExpectations:
46+
Max: 14
47+
4448
# Offense count: 12
4549
# Configuration parameters: EnforcedStyle, IgnoreSharedExamples.
4650
# SupportedStyles: always, named_only
@@ -51,6 +55,12 @@ RSpec/NamedSubject:
5155
- 'spec/defines/file_spec.rb'
5256
- 'spec/functions/node_encrypt_spec.rb'
5357

58+
# Offense count: 13
59+
RSpec/StubbedMock:
60+
Exclude:
61+
- 'spec/functions/node_encrypt_spec.rb'
62+
- 'spec/unit/puppet_x/binford2k/node_encrypt_spec.rb'
63+
5464
# Offense count: 1
5565
# This cop supports unsafe autocorrection (--autocorrect-all).
5666
# Configuration parameters: EnforcedStyle.

spec/spec_helper.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
require 'spec_helper_local' if File.file?(File.join(File.dirname(__FILE__), 'spec_helper_local.rb'))
1111

12-
include RspecPuppetFacts
12+
include RspecPuppetFacts # rubocop:disable Style/MixinUsage
1313

1414
default_facts = {
1515
puppetversion: Puppet.version,
16-
facterversion: Facter.version,
16+
facterversion: Facter.version
1717
}
1818

1919
default_fact_files = [

0 commit comments

Comments
 (0)