diff options
author | akira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-19 10:24:24 +0000 |
---|---|---|
committer | akira <akira@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-12-19 10:24:24 +0000 |
commit | 03e97f68c6eea84080263c139add33abd2c5567d (patch) | |
tree | fb67c1e85161682cc632bc2ad2fc01cbf0ba9e66 | |
parent | 26bd07bcea01eb1b6e08c93df3ffc0597cdc475b (diff) | |
download | ruby-03e97f68c6eea84080263c139add33abd2c5567d.tar.gz ruby-03e97f68c6eea84080263c139add33abd2c5567d.tar.xz ruby-03e97f68c6eea84080263c139add33abd2c5567d.zip |
* lib/runit/cui/testrunner.rb (RUNIT::CUI::TestRunner::run):
should use Test::Unit::UI::{PROGRESS_ONLY,VERBOSE}.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5219 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | lib/runit/cui/testrunner.rb | 2 |
2 files changed, 6 insertions, 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 diff --git a/lib/runit/cui/testrunner.rb b/lib/runit/cui/testrunner.rb index 0106b6c85..d521ec16a 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 |