Codebase list ruby-fxruby / 8391a0b test / TS_All.rb
8391a0b

Tree @8391a0b (Download .tar.gz)

TS_All.rb @8391a0braw · 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