Files
jekyll/script/test
2014-08-12 15:56:56 -04:00

18 lines
178 B
Bash
Executable File

#! /bin/bash
#
# Usage:
# script/test
# script/test <hi>
set -x
if [ -z "$1" ]; then
TEST_FILES="test/test_*.rb"
else
TEST_FILES="$@"
fi
set -x
bundle exec rake test