From 04445c24c260ccf7b13c93f56debbe223f8100b1 Mon Sep 17 00:00:00 2001 From: Animesh-Ghosh Date: Sun, 21 Aug 2022 23:05:50 +0530 Subject: [PATCH] Update note for future contributors Updated note for contributors/reviewers. --- test_titles_updater.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test_titles_updater.py b/test_titles_updater.py index 111ef99..1f8114e 100644 --- a/test_titles_updater.py +++ b/test_titles_updater.py @@ -13,8 +13,7 @@ environ_patcher.start() from main import get_titles -# TODO: write tests for update_titles method after figuring out -# which objects to mock and with what +# NOTE: not sure about how exactly update_titles can be tested class TestTitlesUpdater(unittest.TestCase): @patch('main.json.load', return_value={'titles': ['foo', 'bar', 'baz']}) def test_get_titles_returns_a_list(self, _):