Просмотр исходного кода

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

tags/v0.9.1
Imran Iqbal 5 лет назад
Родитель
Сommit
67de777842
Аккаунт пользователя с таким Email не найден
2 измененных файлов: 9 добавлений и 5 удалений
  1. +2
    -0
      test/integration/preferences/controls/preferences_spec.rb
  2. +7
    -5
      test/integration/repositories/controls/repositories_spec.rb

+ 2
- 0
test/integration/preferences/controls/preferences_spec.rb Просмотреть файл

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

control 'Apt preferences' do
title 'should be configured'


+ 7
- 5
test/integration/repositories/controls/repositories_spec.rb Просмотреть файл

@@ -1,11 +1,13 @@
# frozen_string_literal: true

control 'Apt repositories' do
title 'should be configured'

if os[:name] == 'ubuntu'
keyring_package = 'ubuntu-keyring'
else
keyring_package = 'debian-archive-keyring'
end
keyring_package = if os[:name] == 'ubuntu'
'ubuntu-keyring'
else
'debian-archive-keyring'
end

describe package(keyring_package) do
it { should be_installed }

Загрузка…
Отмена
Сохранить