Sha256: 64c20b68d9559f68430a0f2430568078f493345d94247c71288b362bc985e3cc

Contents?: true

Size: 408 Bytes

Versions: 6

Compression:

Stored size: 408 Bytes

Contents

#!/bin/bash

# script/test: Run test suite for application. Optionally pass in a path to an
#              individual test file to run a single test.


set -e

cd "$(dirname "$0")/.."

[ -z "$DEBUG" ] || set -x

echo ["$(date "+%H:%M:%S")"] "==> Running setup…"
bin/setup

echo ["$(date "+%H:%M:%S")"] "==> Running tests…"
if [[ $# -eq 0 ]]; then
  bundle exec rake spec
else
  bundle exec rspec "$1"
fi

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
scim-kit-0.5.0 bin/test
scim-kit-0.4.0 bin/test
scim-kit-0.3.2 bin/test
scim-kit-0.3.1 bin/test
scim-kit-0.3.0 bin/test
scim-kit-0.2.16 bin/test