From 00d4a77f17083da5f0d6cd0b70bdedc1fef1e32d Mon Sep 17 00:00:00 2001 From: Imran Iqbal Date: Sat, 25 May 2019 14:59:02 +0100 Subject: [PATCH] test(`services_spec`): remove temporary `suse` conditional * `train` gem has been fixed upstream - https://github.com/inspec/train/pull/451 - https://rubygems.org/gems/train/versions/2.1.7 --- test/integration/default/controls/services_spec.rb | 5 ----- 1 file changed, 5 deletions(-) diff --git a/test/integration/default/controls/services_spec.rb b/test/integration/default/controls/services_spec.rb index 3b076555..68dc193b 100644 --- a/test/integration/default/controls/services_spec.rb +++ b/test/integration/default/controls/services_spec.rb @@ -4,10 +4,6 @@ service_name = 'crond' end -# Temporary `if` due to `opensuse-leap-15` bug re: `service` -if os[:name] == 'suse' - puts "[Skip `service`-based tests due to `opensuse-leap-15` detection bug (see https://github.com/inspec/train/issues/377)]" -else control 'Template service' do impact 0.5 title 'should be running and enabled' @@ -17,4 +13,3 @@ it { should be_running } end end -end