mirror of
https://github.com/denisidoro/navi
synced 2024-11-22 11:33:10 +00:00
c4e9c7a90a
Use dictionaries + more
13 lines
245 B
Bash
Executable file
13 lines
245 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 '*_test.sh')"
|
|
|
|
for test in $tests; do
|
|
source "$test"
|
|
done
|
|
|
|
test::finish
|