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: 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@5139 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2003-12-08 13:48:14 +00:00
parent 3fb4d657d8
commit e67e930462
8 changed files with 35 additions and 22 deletions

View file

@ -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