diff --git a/sh/tests/json-researcher_test.sh b/sh/tests/json-researcher_test.sh index 20957d1c..6e11f783 100755 --- a/sh/tests/json-researcher_test.sh +++ b/sh/tests/json-researcher_test.sh @@ -11,6 +11,10 @@ FILENAME="student/json-researcher.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/json-researcher.sh) diff <(echo "$submitted") <(echo "$expected")