1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/bin/testrb
nobu 9c560af1b7 * bin/testrb, test/runner.rb, lib/test/unit.rb: improve backward
compatibility.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30841 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2011-02-11 12:41:58 +00:00

10 lines
300 B
Ruby
Executable file

#!/usr/bin/env ruby
require 'test/unit'
tests = Test::Unit::AutoRunner.new(true)
tests.options.banner.sub!(/\[options\]/, '\& tests...')
unless tests.process_args(ARGV)
abort tests.options.banner
end
p files = tests.to_run
$0 = files.size == 1 ? File.basename(files[0]) : files.to_s
exit tests.run