Sha256: 156f614f925f56f0fe6b2e2d65e9ab3787b11342d2b731156715fb5af93b9bf4
Contents?: true
Size: 541 Bytes
Versions: 80
Compression:
Stored size: 541 Bytes
Contents
#!/bin/sh #/ Usage: test [individual test file] #/ #/ Bootstrap and run all tests or an individual test. #/ #/ Examples: #/ #/ # run all tests #/ test #/ #/ # run individual test #/ test test/controller_instrumentation_test.rb #/ set -e cd $(dirname "$0")/.. [ "$1" = "--help" -o "$1" = "-h" -o "$1" = "help" ] && { grep '^#/' <"$0"| cut -c4- exit 0 } script/bootstrap && ruby -I lib -I test -r rubygems \ -e 'require "bundler/setup"' \ -e '(ARGV.empty? ? Dir["test/**/*_test.rb"] : ARGV).each { |f| load f }' -- "$@"
Version data entries
80 entries across 74 versions & 13 rubygems