mirror of
https://github.com/denisidoro/navi.git
synced 2024-11-12 22:34:38 +03:00
14 lines
248 B
Bash
Executable File
14 lines
248 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")"
|
|
|
|
for test in $tests; do
|
|
source "$test"
|
|
done
|
|
|
|
test::finish
|