From 6c01e040cad38e0317f4389bd01a98357aee0637 Mon Sep 17 00:00:00 2001 From: luke Date: Tue, 23 May 2006 15:43:09 +0000 Subject: Fixing install and tests so that there are no errors, hopefully. git-svn-id: http://reductivelabs.com/svn/facter/trunk@102 1f5c1d6a-bddf-0310-8f58-fc49e503516a --- install.rb | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'install.rb') diff --git a/install.rb b/install.rb index 7780ed3..6dfa33e 100644 --- a/install.rb +++ b/install.rb @@ -197,10 +197,15 @@ end def run_tests(test_list) begin require 'test/unit/ui/console/testrunner' + require 'test/unit' + + unless defined? Test::Unit::TestCase + raise LoadError, "Could not find unit test library" + end $:.unshift "lib" test_list.each do |test| - next if File.directory?(test) - require test + next if File.directory?(test) + require test end tests = [] @@ -293,6 +298,5 @@ bd = nil # bd = "#{Config::CONFIG['bindir']}" #end -puts "bin dir is %s" % InstallOptions.bin_dir do_bins(bins, InstallOptions.bin_dir) do_libs(libs) -- cgit