mirror of
https://github.com/TracksApp/tracks.git
synced 2026-03-06 04:40:18 +01:00
68 lines
1.5 KiB
Ruby
68 lines
1.5 KiB
Ruby
require 'test/unit/testsuite'
|
|
require 'test/unit/testcase'
|
|
|
|
$KCODE = 'UTF8'
|
|
|
|
rcsid = %w$Id: 16runner.rb 1541 2005-05-10 11:28:20Z nahi $
|
|
Version = rcsid[2].scan(/\d+/).collect!(&method(:Integer)).freeze
|
|
Release = rcsid[3].freeze
|
|
|
|
module Test
|
|
module Unit
|
|
module Assertions
|
|
alias assert_raise assert_raises
|
|
end
|
|
end
|
|
end
|
|
|
|
class BulkTestSuite < Test::Unit::TestSuite
|
|
def self.suite
|
|
suite = Test::Unit::TestSuite.new
|
|
ObjectSpace.each_object(Class) do |klass|
|
|
suite << klass.suite if (Test::Unit::TestCase > klass)
|
|
end
|
|
suite
|
|
end
|
|
end
|
|
|
|
runners_map = {
|
|
'console' => proc do |suite|
|
|
require 'test/unit/ui/console/testrunner'
|
|
passed = Test::Unit::UI::Console::TestRunner.run(suite).passed?
|
|
exit(passed ? 0 : 1)
|
|
end,
|
|
'gtk' => proc do |suite|
|
|
require 'test/unit/ui/gtk/testrunner'
|
|
Test::Unit::UI::GTK::TestRunner.run(suite)
|
|
end,
|
|
'fox' => proc do |suite|
|
|
require 'test/unit/ui/fox/testrunner'
|
|
Test::Unit::UI::Fox::TestRunner.run(suite)
|
|
end,
|
|
}
|
|
|
|
def test_require(list)
|
|
list.each do |tc_name|
|
|
if File.directory?(tc_name)
|
|
newlist = Dir.glob(File.join(tc_name, "**", "test_*.rb")).sort
|
|
test_require(newlist)
|
|
else
|
|
dir = File.expand_path(File.dirname(tc_name))
|
|
backup = $:.dup
|
|
$:.push(dir)
|
|
require tc_name
|
|
$:.replace(backup)
|
|
end
|
|
end
|
|
end
|
|
|
|
argv = ARGV
|
|
if argv.empty?
|
|
argv = Dir.glob(File.join(File.dirname(__FILE__), "**", "test_*.rb")).sort
|
|
end
|
|
|
|
test_require(argv)
|
|
|
|
runner = 'console'
|
|
GC.start
|
|
runners_map[runner].call(BulkTestSuite.suite)
|