From 39d32f39f459b94d113e0131a0fbe14bb487cda5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torma=20Krist=C3=B3f?= Date: Mon, 30 Mar 2020 17:43:30 +0200 Subject: [PATCH] add mock libraries --- requirements.txt | 4 +++- test.py | 8 -------- 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/requirements.txt b/requirements.txt index d573b3d..60339c2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,5 @@ sentry_sdk requests -pytest \ No newline at end of file +pytest +pytest-mock +pytest-httpserver \ No newline at end of file diff --git a/test.py b/test.py index c3d4b78..dad1751 100644 --- a/test.py +++ b/test.py @@ -10,11 +10,3 @@ __author__ = "@tormakris" __copyright__ = "Copyright 2020, GoldenPogácsa Team" __module_name__ = "test" __version__text__ = "1" - -class MyTestCase(unittest.TestCase): - def test_something(self): - self.assertEqual(True, False) - - -if __name__ == '__main__': - unittest.main()