bin/reap-test in reap-9.3.5 vs bin/reap-test in reap-9.4.0

- old
+ new

@@ -1,7 +1,19 @@ #!/usr/bin/env ruby require 'reap/application' -app = Reap::Application.new +HELP = <<-END +Usage: #{File.basename($0)} [options] -app.test_unit +Run unit tests. This is a general unit test runner, which +loads all tests into a single process and and then runs +them consecutively. +END + +if ARGV.include?('--help') + puts HELP +else + app = Reap::Application.new + app.test_unit +end +