Codebase list ruby-fxruby / 99106367-7b22-459c-852e-340b299c9f5f/upstream/1.6.45+git20221125.1.7d76b2a test / TS_All.rb
99106367-7b22-459c-852e-340b299c9f5f/upstream/1.6.45+git20221125.1.7d76b2a

Tree @99106367-7b22-459c-852e-340b299c9f5f/upstream/1.6.45+git20221125.1.7d76b2a (Download .tar.gz)

TS_All.rb @99106367-7b22-459c-852e-340b299c9f5f/upstream/1.6.45+git20221125.1.7d76b2araw · 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