aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2012-08-12 01:02:37 -0500
committerJack Nagel2012-08-12 01:02:37 -0500
commit8818e008e360a6b6e94a1b470218efa951874e15 (patch)
treeaf390ce9ee66ea2e3b5c06515f4b591e3cbd7d02 /Library
parent0549a9ab05c3c901089e9c2677896bc707c67815 (diff)
downloadbrew-8818e008e360a6b6e94a1b470218efa951874e15.tar.bz2
tests: require string extension before exceptions
exceptions.rb now needs String#undent when it is loaded. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/test/testing_env.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/test/testing_env.rb b/Library/Homebrew/test/testing_env.rb
index 0d0291566..b01fe2295 100644
--- a/Library/Homebrew/test/testing_env.rb
+++ b/Library/Homebrew/test/testing_env.rb
@@ -8,9 +8,9 @@ ABS__FILE__=File.expand_path(__FILE__)
$:.push(File.expand_path(__FILE__+'/../..'))
require 'extend/pathname'
+require 'extend/string'
require 'exceptions'
require 'utils'
-require 'extend/string'
# these are defined in global.rb, but we don't want to break our actual
# homebrew tree, and we do want to test everything :)