From 3d062c29723c02ff5504b9f86413ff06f4df56c6 Mon Sep 17 00:00:00 2001 From: James Tanner Date: Thu, 1 Feb 2024 14:31:34 -0500 Subject: [PATCH] Checkin. No-Issue Signed-off-by: James Tanner --- tests/integration/test_collections.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/integration/test_collections.py b/tests/integration/test_collections.py index 4633fca9..a90924c9 100644 --- a/tests/integration/test_collections.py +++ b/tests/integration/test_collections.py @@ -84,6 +84,8 @@ def test_collection_community_general_import(workdir, local_fast_config): assert ("module", "xfconf") in docs_contents assert ("module", "jabber") in docs_contents # assert ("filter", "time") in docs_contents + assert ("filter", "to_hours") in docs_contents + assert ("filter", "to_days") in docs_contents assert ("filter", "dict") in docs_contents assert ("filter", "to_ini") in docs_contents assert ("doc_fragments", "nomad") in docs_contents @@ -92,3 +94,7 @@ def test_collection_community_general_import(workdir, local_fast_config): assert ("cache", "yaml") in docs_contents assert ("become", "pbrun") in docs_contents assert ("action", "shutdown") in docs_contents + + # check doc strings for the nested filter plugins ... + assert docs_contents[("filter", "to_days")]['doc_strings'] is not None + # import epdb; epdb.st()