summaryrefslogtreecommitdiff
path: root/lib/test
diff options
context:
space:
mode:
Diffstat (limited to 'lib/test')
-rw-r--r--lib/test/unit.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/test/unit.rb b/lib/test/unit.rb
index 3e2b388273..fd7fe06f43 100644
--- a/lib/test/unit.rb
+++ b/lib/test/unit.rb
@@ -32,7 +32,7 @@ module Test
end
files.map! {|f|
- f = f.gsub(Regexp.compile(Regexp.quote(File::ALT_SEPARATOR)), File::SEPARATOR) if File::ALT_SEPARATOR
+ f = f.tr(File::ALT_SEPARATOR, File::SEPARATOR) if File::ALT_SEPARATOR
if File.directory? f
Dir["#{f}/**/test_*.rb"]
elsif File.file? f
@@ -47,12 +47,12 @@ module Test
files.reject! {|f| reject_pat =~ f }
files.each {|f|
- d = File.dirname(File.expand_path(f))
+ d = File.dirname(path = File.expand_path(f))
unless $:.include? d
$: << d
end
begin
- require f
+ require path
rescue LoadError
puts "#{f}: #{$!}"
end