mirror of
https://github.com/zhigang1992/boxen.git
synced 2026-01-12 22:46:11 +08:00
11 lines
246 B
Bash
Executable File
11 lines
246 B
Bash
Executable File
#!/bin/sh
|
|
# Run the unit tests.
|
|
|
|
cd "$(dirname $0)"/..
|
|
|
|
script/bootstrap &&
|
|
ruby -rubygems -Ilib:test \
|
|
-e 'require "bundler/setup"' \
|
|
-e 'tests = ARGV.empty? ? Dir["test/**/*_test.rb"] : ARGV' \
|
|
-e 'tests.each { |f| load f }' "$@"
|