#
# test each command of the middle tier

rm country_codes.txt
./get_country_codes
if grep Zambia country_codes.txt >/dev/null
then 
   echo "country_codes OK"
else
   echo "country_codes FAIL"
fi

