[cairo-commit] rcairo/test-unit/lib/test/unit/ui/emacs testrunner.rb, NONE, 1.1
Kouhei Sutou
commit at pdx.freedesktop.org
Wed Aug 13 01:20:58 PDT 2008
- Previous message: [cairo-commit] rcairo/test-unit/lib/test/unit/ui/console outputlevel.rb, NONE, 1.1 testrunner.rb, NONE, 1.1
- Next message: [cairo-commit] rcairo/test-unit/lib/test/unit/util backtracefilter.rb, NONE, 1.1 observable.rb, NONE, 1.1 procwrapper.rb, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Committed by: kou
Update of /cvs/cairo/rcairo/test-unit/lib/test/unit/ui/emacs
In directory kemper:/tmp/cvs-serv10309/test-unit/lib/test/unit/ui/emacs
Added Files:
testrunner.rb
Log Message:
* test-unit: imported Test::Unit 2.x.
--- NEW FILE: testrunner.rb ---
require 'test/unit/ui/console/testrunner'
module Test
module Unit
module UI
module Emacs
class TestRunner < Console::TestRunner
private
def output_setup_end
end
def output_started
end
def format_fault(fault)
return super unless fault.respond_to?(:label)
format_method_name = "format_fault_#{fault.label.downcase}"
if respond_to?(format_method_name, true)
send(format_method_name, fault)
else
super
end
end
def format_fault_failure(failure)
if failure.location.size == 1
location = failure.location[0]
location_display = location.sub(/\A(.+:\d+).*/, ' [\\1]')
else
location_display = "\n" + failure.location.join("\n")
end
result = "#{failure.label}:\n"
result << "#{failure.test_name}#{location_display}:\n"
result << failure.message
result
end
def format_fault_error(error)
result = "#{error.label}:\n"
result << "#{error.test_name}:\n"
result << "#{error.message}\n"
result << error.backtrace.join("\n")
result
end
end
end
end
end
end
- Previous message: [cairo-commit] rcairo/test-unit/lib/test/unit/ui/console outputlevel.rb, NONE, 1.1 testrunner.rb, NONE, 1.1
- Next message: [cairo-commit] rcairo/test-unit/lib/test/unit/util backtracefilter.rb, NONE, 1.1 observable.rb, NONE, 1.1 procwrapper.rb, NONE, 1.1
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the cairo-commit
mailing list