Codebase list ruby-fxruby / run/530a6e8f-4133-47b1-8a38-1ec1435bd9bf/main test / TS_All.rb
run/530a6e8f-4133-47b1-8a38-1ec1435bd9bf/main

Tree @run/530a6e8f-4133-47b1-8a38-1ec1435bd9bf/main (Download .tar.gz)

TS_All.rb @run/530a6e8f-4133-47b1-8a38-1ec1435bd9bf/mainraw · history · blame

require 'fox16'
require 'test/unit'

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