Parcourir la source

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

tags/v0.59.5
Imran Iqbal il y a 5 ans
Parent
révision
62f82a4334
Aucun compte lié à l'adresse e-mail de l'auteur
9 fichiers modifiés avec 41 ajouts et 25 suppressions
  1. +9
    -9
      Vagrantfile
  2. +4
    -2
      test/integration/v201707-py2/controls/pkgs_spec.rb
  3. +4
    -2
      test/integration/v201707-py2/controls/service_spec.rb
  4. +4
    -2
      test/integration/v201803-py2/controls/pkgs_spec.rb
  5. +4
    -2
      test/integration/v201803-py2/controls/service_spec.rb
  6. +4
    -2
      test/integration/v201902-py2/controls/pkgs_spec.rb
  7. +4
    -2
      test/integration/v201902-py2/controls/service_spec.rb
  8. +4
    -2
      test/integration/v201902-py3/controls/pkgs_spec.rb
  9. +4
    -2
      test/integration/v201902-py3/controls/service_spec.rb

+ 9
- 9
Vagrantfile Voir le fichier

@@ -1,24 +1,24 @@
# frozen_string_literal: true

# -*- mode: ruby -*-
# vi: set ft=ruby :

# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
VAGRANTFILE_API_VERSION = '2'

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.hostname = "salt"
config.vm.synced_folder "./", "/srv/salt", id: "vagrant-root"
config.vm.box = 'ubuntu/trusty64'
config.vm.hostname = 'salt'
config.vm.synced_folder './', '/srv/salt', id: 'vagrant-root'

config.ssh.forward_agent = true

config.vm.provider :virtualbox do |vb|
# Use VBoxManage to customize the VM. For example to change memory:
vb.customize ["modifyvm", :id, "--memory", "1024"]
end
if Vagrant.has_plugin?("vagrant-cachier")
config.cache.scope = :box
vb.customize ['modifyvm', :id, '--memory', '1024']
end
config.cache.scope = :box if Vagrant.has_plugin?('vagrant-cachier')

# Set up salt-master and minion
config.vm.provision "shell", path: "dev/setup-salt.sh"
config.vm.provision 'shell', path: 'dev/setup-salt.sh'
end

+ 4
- 2
test/integration/v201707-py2/controls/pkgs_spec.rb Voir le fichier

@@ -1,3 +1,5 @@
# frozen_string_literal: true

version =
case platform[:family]
when 'redhat'
@@ -14,10 +16,10 @@ version =
control 'salt packages' do
title 'should be installed'

%w(
%w[
salt-master
salt-minion
).each do |p|
].each do |p|
describe package(p) do
it { should be_installed }
its('version') { should eq version }

+ 4
- 2
test/integration/v201707-py2/controls/service_spec.rb Voir le fichier

@@ -1,10 +1,12 @@
# frozen_string_literal: true

control 'salt services' do
title 'should be running'

%w(
%w[
salt-master
salt-minion
).each do |p|
].each do |p|
describe service(p) do
it { should be_enabled }
it { should be_running }

+ 4
- 2
test/integration/v201803-py2/controls/pkgs_spec.rb Voir le fichier

@@ -1,3 +1,5 @@
# frozen_string_literal: true

version =
case platform[:family]
when 'redhat'
@@ -9,10 +11,10 @@ version =
control 'salt packages' do
title 'should be installed'

%w(
%w[
salt-master
salt-minion
).each do |p|
].each do |p|
describe package(p) do
it { should be_installed }
its('version') { should eq version }

+ 4
- 2
test/integration/v201803-py2/controls/service_spec.rb Voir le fichier

@@ -1,10 +1,12 @@
# frozen_string_literal: true

control 'salt services' do
title 'should be running'

%w(
%w[
salt-master
salt-minion
).each do |p|
].each do |p|
describe service(p) do
it { should be_enabled }
it { should be_running }

+ 4
- 2
test/integration/v201902-py2/controls/pkgs_spec.rb Voir le fichier

@@ -1,3 +1,5 @@
# frozen_string_literal: true

version =
case platform[:family]
when 'redhat'
@@ -13,10 +15,10 @@ version =
control 'salt packages' do
title 'should be installed'

%w(
%w[
salt-master
salt-minion
).each do |p|
].each do |p|
describe package(p) do
it { should be_installed }
its('version') { should eq version }

+ 4
- 2
test/integration/v201902-py2/controls/service_spec.rb Voir le fichier

@@ -1,10 +1,12 @@
# frozen_string_literal: true

control 'salt services' do
title 'should be running'

%w(
%w[
salt-master
salt-minion
).each do |p|
].each do |p|
describe service(p) do
it { should be_enabled }
it { should be_running }

+ 4
- 2
test/integration/v201902-py3/controls/pkgs_spec.rb Voir le fichier

@@ -1,3 +1,5 @@
# frozen_string_literal: true

version =
case platform[:family]
when 'redhat'
@@ -18,10 +20,10 @@ version =
control 'salt packages' do
title 'should be installed'

%w(
%w[
salt-master
salt-minion
).each do |p|
].each do |p|
describe package(p) do
it { should be_installed }
its('version') { should eq version }

+ 4
- 2
test/integration/v201902-py3/controls/service_spec.rb Voir le fichier

@@ -1,10 +1,12 @@
# frozen_string_literal: true

control 'salt services' do
title 'should be running'

%w(
%w[
salt-master
salt-minion
).each do |p|
].each do |p|
describe service(p) do
it { should be_enabled }
it { should be_running }

Chargement…
Annuler
Enregistrer