navi/test/run

16 lines
281 B
Text
Raw Normal View History

2019-09-21 19:21:46 -03:00
#!/usr/bin/env bash
set -euo pipefail
2019-10-11 14:33:16 -03:00
export NAVI_HOME="$(cd "$(dirname "$0")/.." && pwd)"
source "${NAVI_HOME}/test/core.sh"
2019-09-21 19:21:46 -03:00
2019-10-11 14:33:16 -03:00
tests="$(find "$NAVI_HOME/test" -iname "${1:-}*_test.sh")"
2019-09-21 19:21:46 -03:00
NAVI_PATH="${NAVI_HOME}/cheats"
2019-09-23 08:56:15 -03:00
for test in $tests; do
source "$test"
2019-09-21 19:21:46 -03:00
done
2019-09-23 08:56:15 -03:00
test::finish