jekyll/script/test

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