[cairo-commit] rcairo/test-unit/lib/test/unit/runner console.rb, NONE, 1.1 emacs.rb, NONE, 1.1
Kouhei Sutou
commit at pdx.freedesktop.org
Wed Aug 13 01:20:57 PDT 2008
- Previous message: [cairo-commit] rcairo/test-unit/lib/test/unit/collector descendant.rb, NONE, 1.1 dir.rb, NONE, 1.1 load.rb, NONE, 1.1 objectspace.rb, NONE, 1.1
- Next message: [cairo-commit] rcairo/test-unit/lib/test/unit/ui testrunner.rb, NONE, 1.1 testrunnermediator.rb, NONE, 1.1 testrunnerutilities.rb, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: kou
Update of /cvs/cairo/rcairo/test-unit/lib/test/unit/runner
In directory kemper:/tmp/cvs-serv10309/test-unit/lib/test/unit/runner
Added Files:
console.rb emacs.rb
Log Message:
* test-unit: imported Test::Unit 2.x.
--- NEW FILE: console.rb ---
module Test
module Unit
AutoRunner.register_runner(:console) do |auto_runner|
require 'test/unit/ui/console/testrunner'
Test::Unit::UI::Console::TestRunner
end
AutoRunner.setup_option do |auto_runner, opts|
require 'test/unit/ui/console/outputlevel'
output_levels = [
[:silent, UI::Console::OutputLevel::SILENT],
[:progress, UI::Console::OutputLevel::PROGRESS_ONLY],
[:normal, UI::Console::OutputLevel::NORMAL],
[:verbose, UI::Console::OutputLevel::VERBOSE],
]
opts.on('-v', '--verbose=[LEVEL]', output_levels,
"Set the output level (default is verbose).",
"(#{auto_runner.keyword_display(output_levels)})") do |level|
level ||= output_levels.assoc(:verbose)[1]
auto_runner.runner_options[:output_level] = level
end
use_color_options = [
[:auto, :auto],
["-", false],
["no", false],
["false", false],
["+", true],
["yes", true],
["true", true],
]
opts.on("--[no-]use-color=[auto]", use_color_options,
"Use color output",
"(default is auto") do |use_color|
case use_color
when nil
use_color = true
when :auto
use_color = nil
end
auto_runner.runner_options[:use_color] = use_color
end
end
end
end
--- NEW FILE: emacs.rb ---
module Test
module Unit
AutoRunner.register_runner(:emacs) do |auto_runner|
require 'test/unit/ui/emacs/testrunner'
Test::Unit::UI::Emacs::TestRunner
end
end
end
- Previous message: [cairo-commit] rcairo/test-unit/lib/test/unit/collector descendant.rb, NONE, 1.1 dir.rb, NONE, 1.1 load.rb, NONE, 1.1 objectspace.rb, NONE, 1.1
- Next message: [cairo-commit] rcairo/test-unit/lib/test/unit/ui testrunner.rb, NONE, 1.1 testrunnermediator.rb, NONE, 1.1 testrunnerutilities.rb, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cairo-commit
mailing list