diff --git a/test/TS_All.rb b/test/TS_All.rb index 9778dcda25fb6f13b137028ac27721d56f689275..92db76e675c64dc28bcdd0bbf9f4a62c479389fe 100755 --- a/test/TS_All.rb +++ b/test/TS_All.rb @@ -1,25 +1,9 @@ require 'fox16' require 'test/unit' -class TS_All - def TS_All.suite - suite = Test::Unit::TestSuite.new - Object.constants.sort.each do |k| - next if /^TC_/ !~ k - constant = Object.const_get(k) - if constant.kind_of?(Class) -# puts "adding tests for #{constant.to_s}" - suite << constant.suite - end - end - suite - end -end - if __FILE__ == $0 - require 'test/unit/ui/console/testrunner' + $: << File.dirname(__FILE__) Dir.glob("TC_*.rb").each do |testcase| require "#{testcase}" end - Test::Unit::UI::Console::TestRunner.run(TS_All) end