Codebase list ruby-fxruby / run/1866bc6b-90ce-4b16-9a46-fed0eeaf1d07/main test / TS_All.rb
run/1866bc6b-90ce-4b16-9a46-fed0eeaf1d07/main

Tree @run/1866bc6b-90ce-4b16-9a46-fed0eeaf1d07/main (Download .tar.gz)

TS_All.rb @run/1866bc6b-90ce-4b16-9a46-fed0eeaf1d07/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