diff --git a/sh/tests/to-git-or-not-to-git_test.sh b/sh/tests/to-git-or-not-to-git_test.sh index da7aef8d7..21dd923e3 100755 --- a/sh/tests/to-git-or-not-to-git_test.sh +++ b/sh/tests/to-git-or-not-to-git_test.sh @@ -11,6 +11,10 @@ FILENAME="student/to-git-or-not-to-git.sh" if [ -f ${FILENAME} ]; then # FILE exists and it's not empty if [ -s ${FILENAME} ]; then + if [[ $(cat $FILENAME | grep echo | wc -l) -ne 0 ]]; then + echo "echo is not allowed in this exercise!" + exit 1 + fi submitted=$(bash $FILENAME) expected=$(bash solutions/to-git-or-not-to-git.sh) diff <(echo "$submitted") <(echo "$expected")