Codebase list ruby-fxruby / a746a243-50e5-4e96-b8b2-3946778547bb/main test / TS_All.rb
a746a243-50e5-4e96-b8b2-3946778547bb/main

Tree @a746a243-50e5-4e96-b8b2-3946778547bb/main (Download .tar.gz)

TS_All.rb @a746a243-50e5-4e96-b8b2-3946778547bb/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