mirror of
https://github.com/denisidoro/navi.git
synced 2024-11-09 23:38:08 +03:00
19 lines
247 B
Bash
19 lines
247 B
Bash
#!/usr/bin/env bash
|
|
|
|
source "${SCRIPT_DIR}/src/main.sh"
|
|
|
|
test::success() {
|
|
echo "Test passed!"
|
|
}
|
|
|
|
test::fail() {
|
|
echo "Test failed..."
|
|
exit 42
|
|
}
|
|
|
|
test::run() {
|
|
echo
|
|
echo "-> $1"
|
|
shift
|
|
eval "$*" && test::success || test::fail
|
|
} |