aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xlib/rake/ruby182_test_unit_fix.rb23
-rw-r--r--lib/rake/testtask.rb7
2 files changed, 1 insertions, 29 deletions
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: