diff options
| author | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-17 06:18:29 +0000 |
|---|---|---|
| committer | yugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-17 06:18:29 +0000 |
| commit | 6d3b0f7243ae944ec4e9fb3be5d388bc6ea44017 (patch) | |
| tree | 8a0b708645cbaebb7e58295aaf141d3066b6f60d /lib/test/unit.rb | |
| parent | a2057c2f0409c52948ea4b7aec729e9ff379654d (diff) | |
merges r20796 and r20799 from trunk into ruby_1_9_1.
* lib/test/unit.rb (Test::Unit.setup_argv): ALT_SEPARATOR support.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_1@20831 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test/unit.rb')
| -rw-r--r-- | lib/test/unit.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/test/unit.rb b/lib/test/unit.rb index 4e9c79686..ec248c392 100644 --- a/lib/test/unit.rb +++ b/lib/test/unit.rb @@ -32,6 +32,7 @@ module Test end files.map! {|f| + f = f.gsub(Regexp.compile(Regexp.quote(File::ALT_SEPARATOR)), File::SEPARATOR) if File::ALT_SEPARATOR if File.directory? f Dir["#{f}/**/test_*.rb"] elsif File.file? f |
