1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/test/unit/autorunner.rb (Test::Unit::AutoRunner::COLLECTORS):

base directory should be lower precedence.  fixed: [ruby-dev:29622]

* lib/test/unit/autorunner.rb (Test::Unit::AutoRunner#options): typo.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11065 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2006-10-02 13:29:07 +00:00
parent 8e1455a16e
commit 7d054f8913
2 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,10 @@
Mon Oct 2 22:28:17 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* lib/test/unit/autorunner.rb (Test::Unit::AutoRunner::COLLECTORS):
base directory should be lower precedence. fixed: [ruby-dev:29622]
* lib/test/unit/autorunner.rb (Test::Unit::AutoRunner#options): typo.
Mon Oct 2 15:47:55 2006 NAKAMURA Usaku <usa@ruby-lang.org>
* instruby.rb: batfile should be CRLF'ed.

View file

@ -64,7 +64,7 @@ module Test
c.pattern.concat(r.pattern) if(r.pattern)
c.exclude.concat(r.exclude) if(r.exclude)
c.base = r.base
$:.unshift(r.base) if r.base
$:.push(r.base) if r.base
c.collect(*(r.to_run.empty? ? ['.'] : r.to_run))
end,
}
@ -111,7 +111,7 @@ module Test
end
if(@standalone)
o.on('-b', '--basedir=DIR', "Base directory of test suits.") do |b|
o.on('-b', '--basedir=DIR', "Base directory of test suites.") do |b|
@base = b
end