mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-05 09:37:48 +00:00
17 lines
349 B
Bash
17 lines
349 B
Bash
#!/usr/bin/env bash
|
|
# file: b-example-test.sh
|
|
#### $$VERSION$$ v0.98-0-g5b5447e
|
|
|
|
# include common functions and definitions
|
|
# shellcheck source=test/ALL-tests.inc.sh
|
|
source "./ALL-tests.inc.sh"
|
|
|
|
if [ -f "${TESTDIR}/bashbot.sh" ]; then
|
|
echo "${SUCCESS} bashbot.sh exist!"
|
|
exit 0
|
|
else
|
|
echo "${NOSUCCESS} ${TESTDIR}/bashbot.sh missing!"
|
|
exit 1
|
|
fi
|
|
|