1
1
mirror of https://github.com/octoleo/telegram-bot-bash.git synced 2025-02-13 07:48:49 +00:00
2019-04-21 11:34:17 +02:00

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