From a15cdb751223ba152ad73b4d39dbc30331c6168c Mon Sep 17 00:00:00 2001 From: akira Date: Fri, 19 Dec 2003 10:24:24 +0000 Subject: * 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 --- ChangeLog | 5 +++++ lib/runit/cui/testrunner.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 671b06e506..ca0241bad9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Dec 19 19:21:49 2003 akira yamada + + * 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 * ext/tk/sample/tkmultilistbox.rb: bug fix diff --git a/lib/runit/cui/testrunner.rb b/lib/runit/cui/testrunner.rb index 0106b6c859..d521ec16ad 100644 --- a/lib/runit/cui/testrunner.rb +++ b/lib/runit/cui/testrunner.rb @@ -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 -- cgit v1.2.3