navi/test/run

14 lines
245 B
Text
Raw Normal View History

2019-09-21 19:21:46 -03:00
#!/usr/bin/env bash
set -euo pipefail
export SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
source "${SCRIPT_DIR}/test/core.sh"
tests="$(find "$SCRIPT_DIR/test" -iname '*_test.sh')"
2019-09-21 19:21:46 -03:00
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