mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/runit/cui/testrunner.rb (RUNIT::CUI::TestRunner::run):
should use Test::Unit::UI::{PROGRESS_ONLY,VERBOSE}. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5219 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
687cb91127
commit
a15cdb7512
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Fri Dec 19 19:21:49 2003 akira yamada <akira@ruby-lang.org>
|
||||
|
||||
* lib/runit/cui/testrunner.rb (RUNIT::CUI::TestRunner::run):
|
||||
should use Test::Unit::UI::{PROGRESS_ONLY,VERBOSE}.
|
||||
|
||||
Fri Dec 19 17:36:49 2003 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
|
||||
|
||||
* ext/tk/sample/tkmultilistbox.rb: bug fix
|
||||
|
|
|
@ -23,7 +23,7 @@ module RUNIT
|
|||
def @suite.suite
|
||||
self
|
||||
end
|
||||
@output_level = (quiet_mode ? PROGRESS_ONLY : NORMAL)
|
||||
@output_level = (quiet_mode ? Test::Unit::UI::PROGRESS_ONLY : Test::Unit::UI::VERBOSE)
|
||||
start
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue