diff options
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 7ada1fac9d..47432f5a77 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -27,7 +27,6 @@ end # Ruby 1.9 Compat $:.unshift File.expand_path("../..", __FILE__) - require "rubygems" require "rspec/mocks" @@ -50,9 +49,9 @@ require "chef" require "chef/knife" Dir["lib/chef/knife/**/*.rb"]. - map {|f| f.gsub("lib/", "") }. - map {|f| f.gsub(%r{\.rb$}, "") }. - each {|f| require f } + map { |f| f.gsub("lib/", "") }. + map { |f| f.gsub(%r{\.rb$}, "") }. + each { |f| require f } require "chef/resource_resolver" require "chef/provider_resolver" @@ -86,7 +85,7 @@ Dir["spec/support/**/*.rb"]. reject { |f| f =~ %r{^spec/support/platforms} }. reject { |f| f =~ %r{^spec/support/pedant} }. map { |f| f.gsub(%r{.rb$}, "") }. - map { |f| f.gsub(%r{spec/}, "")}. + map { |f| f.gsub(%r{spec/}, "") }. each { |f| require f } OHAI_SYSTEM = Ohai::System.new @@ -131,8 +130,8 @@ RSpec.configure do |config| config.filter_run_excluding :windows_only => true unless windows? config.filter_run_excluding :not_supported_on_mac_osx_106 => true if mac_osx_106? - 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_mac_osx => true if mac_osx? + config.filter_run_excluding :mac_osx_only => true if !mac_osx? config.filter_run_excluding :not_supported_on_win2k3 => true if windows_win2k3? config.filter_run_excluding :not_supported_on_solaris => true if solaris? config.filter_run_excluding :not_supported_on_gce => true if gce? |