summaryrefslogtreecommitdiff
path: root/test/runner.rb
blob: b4501bee946215f6a1307e6a9412d2feb1cfdc18 (plain)
1
2
3
4
5
6
7
8
9
10
require 'test/unit'

rcsid = %w$Id$
Version = rcsid[2].scan(/\d+/).collect!(&method(:Integer)).freeze
Release = rcsid[3].freeze

runner = Test::Unit::AutoRunner.new(true)
runner.to_run.concat(ARGV)
runner.to_run << File.dirname(__FILE__) if runner.to_run.empty?
runner.run