diff --git a/CHANGELOG b/CHANGELOG index d7b88a86..f808357e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,9 +1,10 @@ jc changelog -20220120 v1.18.0 +20220121 v1.18.0 - Add high-level parse API for built-in and plugin parsers - Add python module developer documentation -- Documentation formatting enhancements +- Enhance magic syntax exception messages +- Enhance documentation 20220106 v1.17.7 - Add stat command streaming parser tested on linux and macOS diff --git a/tests/test_lib.py b/tests/test_lib.py index 3c9cc04d..2714b811 100644 --- a/tests/test_lib.py +++ b/tests/test_lib.py @@ -38,6 +38,7 @@ class MyTests(unittest.TestCase): self.assertIsInstance(jc.lib.plugin_parser_mod_list(), list) def test_lib_plugin_parser_mod_list_length_is_zero(self): + """Ensure there are no plugin parsers present during test/build.""" self.assertEqual(len(jc.lib.plugin_parser_mod_list()), 0) def test_lib_cliname_to_modname(self):