fix(rubocop): add fixes using `rubocop --safe-auto-correct`

pull/63/head
Imran Iqbal 4 years ago
parent 8c14b06140
commit 652c350785
No known key found for this signature in database
GPG Key ID: 6D8629439D2B7819
  1. 4
      test/integration/default/controls/config.rb
  2. 1
      test/integration/default/controls/package.rb

@ -1,3 +1,5 @@
# frozen_string_literal: true
control 'Sudoers configuration' do
title 'should match desired lines'
@ -17,7 +19,6 @@ control 'Sudoers configuration' do
its('content') { should include '%sudo ALL=(nodejs) NOPASSWD: ALL' }
its('content') { should include '+sysadmins ALL=(ALL) ALL' }
its('content') { should include '#includedir /etc/sudoers.d' }
end
describe file('/etc/sudoers.d/extra-file') do
@ -43,5 +44,4 @@ control 'Sudoers configuration' do
its('mode') { should cmp '0440' }
its('content') { should include '+other_netgroup ALL=(ALL) ALL' }
end
end

@ -1,3 +1,4 @@
# frozen_string_literal: true
control 'Sudo package' do
title 'should be installed'

Loading…
Cancel
Save