From e9b5aae5283b2b88548101bbb0ef05c92bbe2358 Mon Sep 17 00:00:00 2001 From: Joe S <31870999+KenwoodFox@users.noreply.github.com> Date: Fri, 8 Jan 2021 20:40:10 -0500 Subject: [PATCH] delete zybooks test --- 1.9_Mad_Lib/tests/test_zyBooks.py | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 1.9_Mad_Lib/tests/test_zyBooks.py 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()