Codebase list ruby-fxruby / 95188612-310a-4049-9c67-9457f1ff1a48/main test / TS_All.rb
95188612-310a-4049-9c67-9457f1ff1a48/main

Tree @95188612-310a-4049-9c67-9457f1ff1a48/main (Download .tar.gz)

TS_All.rb @95188612-310a-4049-9c67-9457f1ff1a48/mainraw · history · blame

1
2
3
4
5
6
7
8
9
require 'fox16'
require 'test/unit'

if __FILE__ == $0
  $: << File.dirname(__FILE__)
  Dir.glob("TC_*.rb").each do |testcase|
    require "#{testcase}"
  end
end