From 3399e8551e4f17db792a97773c49ac8db3c3f630 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Fri, 5 Jan 2024 16:50:49 -0800 Subject: [PATCH] add slurpable_parser_mod_list test --- tests/test_jc.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test_jc.py b/tests/test_jc.py index 60fce850..96200b08 100644 --- a/tests/test_jc.py +++ b/tests/test_jc.py @@ -37,5 +37,8 @@ class MyTests(unittest.TestCase): def test_jc_plugin_parser_mod_list_is_list(self): self.assertIsInstance(jc.plugin_parser_mod_list(), list) + def test_jc_slurpable_parser_mod_list_is_list(self): + self.assertIsInstance(jc.slurpable_parser_mod_list(), list) + if __name__ == '__main__': unittest.main() \ No newline at end of file