From c44eba192852f2bb2e48967f6f187b84064661fa Mon Sep 17 00:00:00 2001 From: antirex <55479324+antirex@users.noreply.github.com> Date: Thu, 1 Oct 2020 11:02:40 +0530 Subject: [PATCH] Update test_app.py --- test/test_app.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/test/test_app.py b/test/test_app.py index d1c151b..6b65ae3 100644 --- a/test/test_app.py +++ b/test/test_app.py @@ -4,6 +4,7 @@ from app import app import os import unittest +import sklearn class AppTests(unittest.TestCase): @@ -13,10 +14,14 @@ def setUp(self): def tearDown(self): pass - + + def tryOut(self): + print("you have done it") + pass + def test_check(self): response = self.app.get('/math/check') self.assertEqual(response.data, b'Congratulations! Your app works. :)') if __name__ == '__main__': - unittest.main() \ No newline at end of file + unittest.main()