summaryrefslogtreecommitdiffstats
path: root/lib/test/unit/ui/console
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-08 13:48:14 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-08 13:48:14 +0000
commit98bbcb60fa2912b6be92b0f91ae0f19ba6687651 (patch)
tree895a1332a44134edc0839e03fad97d11a6b5f242 /lib/test/unit/ui/console
parentbb928c555efb432f8bec0451e1cc0e8b5246ce7d (diff)
downloadruby-98bbcb60fa2912b6be92b0f91ae0f19ba6687651.tar.gz
ruby-98bbcb60fa2912b6be92b0f91ae0f19ba6687651.tar.xz
ruby-98bbcb60fa2912b6be92b0f91ae0f19ba6687651.zip
* lib/test/unit/autorunner.rb: remove dependency to a particular
runner. [ruby-core:01901], [ruby-list:38869] * lib/test/unit/ui/testrunnerutilities.rb: moved output level constants from Console. * lib/test/unit/ui/console/testrunner.rb: ditto. * lib/test/unit/ui/{fox,gtk,gtk2,tk}/testrunner.rb (initialize): accept output_level. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5139 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/test/unit/ui/console')
-rw-r--r--lib/test/unit/ui/console/testrunner.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/test/unit/ui/console/testrunner.rb b/lib/test/unit/ui/console/testrunner.rb
index dab07ddbc..761777195 100644
--- a/lib/test/unit/ui/console/testrunner.rb
+++ b/lib/test/unit/ui/console/testrunner.rb
@@ -16,11 +16,6 @@ module Test
class TestRunner
extend TestRunnerUtilities
- SILENT = 0
- PROGRESS_ONLY = 1
- NORMAL = 2
- VERBOSE = 3
-
# Creates a new TestRunner and runs the suite.
def self.run(suite, output_level=NORMAL)
return new(suite, output_level).start