diff options
author | Tim Smith <tsmith@chef.io> | 2018-12-04 19:27:46 -0800 |
---|---|---|
committer | Tim Smith <tsmith@chef.io> | 2018-12-04 19:29:00 -0800 |
commit | 23c882933a5121bcb8441b57dc363c61a7328341 (patch) | |
tree | aeb5e7ca580d6633cbf319599245dc698bc7647e /spec/spec_helper.rb | |
parent | 3584550db722a9c45a5d98c36eb93d7b814f801f (diff) | |
download | chef-23c882933a5121bcb8441b57dc363c61a7328341.tar.gz |
Cleanup some functional helpersfunctional_cleanup
Rename the macos helpers. Remove unused helpers to check for RHEL 5 and < Windows 2008 R2.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index e87308e9ed..c493987554 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -143,14 +143,13 @@ RSpec.configure do |config| config.filter_run_excluding skip_travis: true if ENV["TRAVIS"] config.filter_run_excluding windows_only: true unless windows? - config.filter_run_excluding not_supported_on_mac_osx: true if mac_osx? - config.filter_run_excluding mac_osx_only: true if !mac_osx? + config.filter_run_excluding not_supported_on_macos: true if mac_osx? + config.filter_run_excluding macos_only: true if !mac_osx? config.filter_run_excluding not_supported_on_aix: true if aix? config.filter_run_excluding not_supported_on_solaris: true if solaris? config.filter_run_excluding not_supported_on_gce: true if gce? config.filter_run_excluding not_supported_on_nano: true if windows_nano_server? config.filter_run_excluding win2012r2_only: true unless windows_2012r2? - config.filter_run_excluding windows_2008r2_or_later: true unless windows_2008r2_or_later? config.filter_run_excluding windows64_only: true unless windows64? config.filter_run_excluding windows32_only: true unless windows32? config.filter_run_excluding windows_nano_only: true unless windows_nano_server? @@ -186,7 +185,6 @@ RSpec.configure do |config| config.filter_run_excluding not_wpar: true unless wpar? config.filter_run_excluding not_supported_under_fips: true if fips? config.filter_run_excluding rhel: true unless rhel? - config.filter_run_excluding rhel5: true unless rhel5? config.filter_run_excluding rhel6: true unless rhel6? config.filter_run_excluding rhel7: true unless rhel7? config.filter_run_excluding intel_64bit: true unless intel_64bit? |