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

15 lines
247 B
Text
Raw Normal View History

#!/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
}