From 647e83d0439a0937db14a2cc97929e38a6b6a43b Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Wed, 19 Jan 2022 09:29:09 -0800 Subject: [PATCH] add test to ensure there are zero plugin parsers installed during tests --- tests/test_lib.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_lib.py b/tests/test_lib.py index ead0ef55..c57804a7 100644 --- a/tests/test_lib.py +++ b/tests/test_lib.py @@ -37,5 +37,8 @@ class MyTests(unittest.TestCase): def test_jc_lib_plugin_parser_mod_list_is_list(self): self.assertIsInstance(jc.lib.plugin_parser_mod_list(), list) + def test_jc_lib_plugin_parser_mod_list_length_is_zero(self): + self.assertEqual(len(jc.lib.plugin_parser_mod_list()), 0) + if __name__ == '__main__': unittest.main() \ No newline at end of file