mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 11:33:10 +00:00
64be01bf1a
Fix #72
13 lines
251 B
Bash
Executable file
13 lines
251 B
Bash
Executable file
#!/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 "${1:-}*_test.sh")"
|
|
|
|
for test in $tests; do
|
|
source "$test"
|
|
done
|
|
|
|
test::finish
|