From 4239e34bf7b04784a695a74f89aefd3463271161 Mon Sep 17 00:00:00 2001 From: cis-kuldeep Date: Mon, 24 May 2021 18:53:03 +0530 Subject: [PATCH] added test case for _reset() --- src/tests/test_config.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/tests/test_config.py b/src/tests/test_config.py index d44ec738..35f8d980 100644 --- a/src/tests/test_config.py +++ b/src/tests/test_config.py @@ -34,3 +34,8 @@ class TestConfig(unittest.TestCase): BMConfigParser().safeGetInt('nonexistent', 'nonexistent'), 0) self.assertEqual( BMConfigParser().safeGetInt('nonexistent', 'nonexistent', 42), 42) + + def test_reset(self): + """Reset current config""" + bm = BMConfigParser() + self.assertEqual(bm._reset(), None) \ No newline at end of file