Sha256: 2db424bbff9ff359786519862c8574549b3f9c52d8ed309445b51ef725bd19b2

Contents?: true

Size: 636 Bytes

Versions: 1

Compression:

Stored size: 636 Bytes

Contents

#!/usr/bin/env ruby

require 'reap/application'

HELP = <<-END
Usage: #{File.basename($0)} [options]

Run unit-tests independently. Each test is run in a separate
interpretor to prevent script clash. This adds to a more robust
test facility, and prevents potential conflicts between test scripts.

  tests     Test files (eg. test/tc_**/*.rb) [test/**/*]
  loadpath  Directories to include in load path [lib].
  require   List of files to require prior to running tests.
  live      Deactive use of local libs and test against install.
END

if ARGV.include?('--help')
  puts HELP
else
  app = Reap::Application.new
  app.test_solo
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
reap-9.4.0 bin/reap-test-solo