Sha256: 9cdb347b46e73af812a58120d887a060a637aeafcc390f0226c37c289c6baa6f

Contents?: true

Size: 534 Bytes

Versions: 1

Compression:

Stored size: 534 Bytes

Contents

#!/usr/bin/env ruby

# Ensure all unit tests load properly.

require 'reap/application'

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

Simple load testing. Each test is loaded to ensure their
are no require issues in the tests themselves. This is
largey redudant since any other test command will report
these errors as well. The advantage here howver, is that
this command isolates test load issues from actual test
failures.
END

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

Version data entries

1 entries across 1 versions & 1 rubygems

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