mirror of
https://github.com/denisidoro/navi.git
synced 2026-07-24 18:48:18 +00:00
15 lines
281 B
Bash
Executable file
15 lines
281 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
export NAVI_HOME="$(cd "$(dirname "$0")/.." && pwd)"
|
|
source "${NAVI_HOME}/test/core.sh"
|
|
|
|
tests="$(find "$NAVI_HOME/test" -iname "${1:-}*_test.sh")"
|
|
|
|
NAVI_PATH="${NAVI_HOME}/cheats"
|
|
|
|
for test in $tests; do
|
|
source "$test"
|
|
done
|
|
|
|
test::finish
|