diff --git a/1.9_Mad_Lib/tests/test_zyBooks.py b/1.9_Mad_Lib/tests/test_zyBooks.py deleted file mode 100644 index 6a73dbd..0000000 --- a/1.9_Mad_Lib/tests/test_zyBooks.py +++ /dev/null @@ -1,19 +0,0 @@ -import unittest -from unittest.mock import patch -import mad_lib - - -class zyBooks_Test(unittest.TestCase): - - - - - @patch('builtins.input', return_value=['Eric', 'Chipotle', '12', 'cars']) - def test_zyBooks(self, mock_input): - result = mad_lib() - - self.assertEqual(result, 6) - - -if __name__ == '__main__': - unittest.main()