File: testsuite

package info (click to toggle)
ruby-escape-utils 1.2.1-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 388 kB
  • sloc: ansic: 1,742; ruby: 1,079; sh: 7; makefile: 4
file content (10 lines) | stat: -rwxr-xr-x 225 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
set -e
cd "$(dirname "$0")/.."

# run entire test suite
ruby --version 1>&2
exec ruby -I. -rubygems \
    -r "$(pwd)/test/helper" \
    -e "ARGV.each { |f| require(f) }" \
    -- ${*:-`find test -name '*_test.rb'`}