navi/test/run

14 lines
248 B
Text
Raw Normal View History

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