Sha256: 716ceae3b4953d758cec0968a95b6478f619fa4b526bd32344b8e6f59b64be63
Contents?: true
Size: 445 Bytes
Versions: 11
Compression:
Stored size: 445 Bytes
Contents
#!/usr/bin/env ruby # Usage: # # run all test suites # # $ tests/run # # run a particular test suite # # $ tests/run tests/test_sequencehelpers.rb # # script dir dir = File.dirname(__FILE__) # setup load path require 'rubygems' $LOAD_PATH.unshift(File.join(dir, '..', 'lib')) # user specified or glob all? files = ARGV.empty? ? Dir[File.join(dir, 'test_*.rb')] : ARGV # run! files.each do |file| require File.expand_path(file) end
Version data entries
11 entries across 11 versions & 2 rubygems