summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPete Higgins <pete@peterhiggins.org>2020-03-11 13:06:16 -0700
committerPete Higgins <pete@peterhiggins.org>2020-03-11 13:31:20 -0700
commitc14f8414009ba41fd5634acc83817b226901ae80 (patch)
treec020378f2ec00f2d0d9373e87557f052d53be982
parentdfd018cb04a2eae78e5cd8f7569dff4919e3769a (diff)
downloadchef-c14f8414009ba41fd5634acc83817b226901ae80.tar.gz
Fix load path in test runs.fix-rspec-load-path
Signed-off-by: Pete Higgins <pete@peterhiggins.org>
-rw-r--r--spec/spec_helper.rb10
1 files changed, 4 insertions, 6 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index 605f920125..54e0ef41b1 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -24,18 +24,16 @@ module Shell
IRB = nil unless defined? IRB
end
-# Ruby 1.9 Compat
-$:.unshift File.expand_path("../..", __FILE__)
+$LOAD_PATH.unshift File.expand_path("../..", __FILE__)
+
+$LOAD_PATH.unshift File.expand_path("../../chef-config/lib", __FILE__)
+$LOAD_PATH.unshift File.expand_path("../../chef-utils/lib", __FILE__)
require "rubygems"
require "rspec/mocks"
require "webmock/rspec"
-$:.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
-$:.unshift(File.expand_path("../lib", __FILE__))
-$:.unshift(File.dirname(__FILE__))
-
if ENV["COVERAGE"]
require "simplecov"
SimpleCov.start do