From cbd4604c530bd798db321a78d2f7bca4f568ba45 Mon Sep 17 00:00:00 2001 From: nobu Date: Mon, 14 Jan 2008 01:59:03 +0000 Subject: * lib/rake/ruby182_test_unit_fix.rb: removed. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15032 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rake/ruby182_test_unit_fix.rb | 23 ----------------------- lib/rake/testtask.rb | 7 +------ 2 files changed, 1 insertion(+), 29 deletions(-) delete mode 100755 lib/rake/ruby182_test_unit_fix.rb (limited to 'lib/rake') diff --git a/lib/rake/ruby182_test_unit_fix.rb b/lib/rake/ruby182_test_unit_fix.rb deleted file mode 100755 index f02c7879eb..0000000000 --- a/lib/rake/ruby182_test_unit_fix.rb +++ /dev/null @@ -1,23 +0,0 @@ -module Test - module Unit - module Collector - class Dir - undef collect_file - def collect_file(name, suites, already_gathered) - # loadpath = $:.dup - dir = File.dirname(File.expand_path(name)) - $:.unshift(dir) unless $:.first == dir - if(@req) - @req.require(name) - else - require(name) - end - find_test_cases(already_gathered).each{|t| add_suite(suites, t.suite)} - ensure - # $:.replace(loadpath) - $:.delete_at $:.rindex(dir) - end - end - end - end -end diff --git a/lib/rake/testtask.rb b/lib/rake/testtask.rb index 79154e422b..f5b77e5957 100644 --- a/lib/rake/testtask.rb +++ b/lib/rake/testtask.rb @@ -136,12 +136,7 @@ module Rake end def fix # :nodoc: - case RUBY_VERSION - when '1.8.2' - find_file 'rake/ruby182_test_unit_fix' - else - nil - end || '' + '' end def rake_loader # :nodoc: -- cgit v1.2.3