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::initialize):

Initialize @workdir properly to silence a warning under -w.
  Submitted by <tommy at tmtm.org> in [ruby-dev:30400].


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11882 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2007-02-25 14:08:40 +00:00
parent a4300920ae
commit d76ebe83df
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,9 @@
Sun Feb 25 23:02:55 2007 Akinori MUSHA <knu@iDaemons.org>
* lib/test/unit/autorunner.rb (Test::Unit::AutoRunner::initialize):
Initialize @workdir properly to silence a warning under -w.
Submitted by <tommy at tmtm.org> in [ruby-dev:30400].
Sun Feb 25 02:47:43 2007 Akinori MUSHA <knu@iDaemons.org>
* defines.h: Pull the RUBY_MBCHAR_MAXSIZE definition from trunk,

View file

@ -81,6 +81,7 @@ module Test
@filters = []
@to_run = []
@output_level = UI::NORMAL
@workdir = nil
yield(self) if(block_given?)
end