mirror of
https://github.com/fsquillace/junest.git
synced 2026-01-23 18:45:53 +00:00
9 lines
188 B
Bash
Executable file
9 lines
188 B
Bash
Executable file
#!/bin/bash
|
|
tests_succeded=true
|
|
# shellcheck disable=SC2010
|
|
for tst in $(ls "$(dirname "$0")"/test* | grep -v "$(basename "$0")")
|
|
do
|
|
$tst || tests_succeded=false
|
|
done
|
|
|
|
$tests_succeded
|