mirror of
https://github.com/ruby/ruby.git
synced 2026-08-11 08:13:34 +08:00
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20801 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
15 lines
247 B
Ruby
Executable File
15 lines
247 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
require 'test/unit'
|
|
Test::Unit.setup_argv {|files|
|
|
if files.empty?
|
|
puts "Usage: testrb [options] tests..."
|
|
exit 1
|
|
end
|
|
if files.size == 1
|
|
$0 = File.basename(files[0])
|
|
else
|
|
$0 = files.to_s
|
|
end
|
|
files
|
|
}
|