From 5d667393d088dcf9c4c7b5ee7b329cdc92151d11 Mon Sep 17 00:00:00 2001 From: Graham Davison Date: Sat, 6 Feb 2016 11:08:44 -0800 Subject: [PATCH] Clean up --- .../serverspec/localhost/default_spec.rb | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/test/integration/windefault/serverspec/localhost/default_spec.rb b/test/integration/windefault/serverspec/localhost/default_spec.rb index 45ec00bf..6f76cf45 100644 --- a/test/integration/windefault/serverspec/localhost/default_spec.rb +++ b/test/integration/windefault/serverspec/localhost/default_spec.rb @@ -9,7 +9,7 @@ it { should be_running } end -[8301, 8400, 8500, 8600].each do |p| +[8300, 8400, 8500, 8600].each do |p| describe port(p) do it { should be_listening } end @@ -29,24 +29,12 @@ describe file(config_file) do it { should be_file } -# it { should be_owned_by 'consul' } -# it { should be_grouped_into 'consul' } - -# it { should be_mode 640 } end describe file(config_dir) do it { should be_directory } -# it { should be_owned_by 'consul' } -# it { should be_grouped_into 'consul' } - -# it { should be_mode 755 } end describe file(data_dir) do it { should be_directory } -# it { should be_owned_by 'consul' } -# it { should be_grouped_into 'consul' } - -# it { should be_mode 755 } end