Codebase list ruby-fxruby / f762db3d-88aa-4cf6-acc2-33e3fa65a958/upstream/1.6.45+git20230102.1.821f5a9 test / TS_All.rb
f762db3d-88aa-4cf6-acc2-33e3fa65a958/upstream/1.6.45+git20230102.1.821f5a9

Tree @f762db3d-88aa-4cf6-acc2-33e3fa65a958/upstream/1.6.45+git20230102.1.821f5a9 (Download .tar.gz)

TS_All.rb @f762db3d-88aa-4cf6-acc2-33e3fa65a958/upstream/1.6.45+git20230102.1.821f5a9raw · 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