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
commitdc4c40b90c0bc8e6901bf2755a3968d757eb7c5e (patch)
tree6188e6b3c8a4f08a8834d841f1c95e0ae9c6e08c /Library
parent598a60db1030bf176c2b2eaf540abc74b98f7572 (diff)
downloadhomebrew-dc4c40b90c0bc8e6901bf2755a3968d757eb7c5e.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 :)