diff options
Diffstat (limited to 'tests/report_tests/plugin_tests/logs.py')
-rw-r--r-- | tests/report_tests/plugin_tests/logs.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/report_tests/plugin_tests/logs.py b/tests/report_tests/plugin_tests/logs.py index 9512b0d1..14f6bd5d 100644 --- a/tests/report_tests/plugin_tests/logs.py +++ b/tests/report_tests/plugin_tests/logs.py @@ -74,3 +74,9 @@ class LogsSizeLimitTest(StageTwoReportTest): self.assertFileExists(tailed) journ = self.get_name_in_archive('sos_commands/logs/journalctl_--no-pager') assert os.path.islink(journ), "Journal in sos_commands/logs is not a symlink" + + def test_string_not_in_manifest(self): + # we don't want truncated collections appearing in the strings section + # of the manifest for the plugin + manifest = self.get_plugin_manifest('logs') + self.assertFalse(manifest['strings']) |