mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-22 23:45:10 +00:00
16 lines
304 B
Bash
16 lines
304 B
Bash
|
#!/usr/bin/env bash
|
||
|
# file: b-example-test.sh
|
||
|
|
||
|
# 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} bashbot.sh missing!"
|
||
|
exit 1
|
||
|
fi
|
||
|
|