summaryrefslogtreecommitdiff
path: root/lib/rake
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-14 01:59:03 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-01-14 01:59:03 +0000
commitcbd4604c530bd798db321a78d2f7bca4f568ba45 (patch)
treefc5b0b12b8f7e730654238e74646a0c781c5384a /lib/rake
parent5f31c7b54819917b41bcb06ac7761caf2c94da81 (diff)
* 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
Diffstat (limited to 'lib/rake')
-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: