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