From 94e9f62f63ea4402c884e4ce64382601f6e45a8f Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Fri, 17 Dec 2021 14:06:10 +0100 Subject: [PATCH] test/osbuild: check devices, mounts schema Also check that the schema is valid for devices and mounts. --- test/mod/test_osbuild.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mod/test_osbuild.py b/test/mod/test_osbuild.py index 4dae3efe..86243240 100644 --- a/test/mod/test_osbuild.py +++ b/test/mod/test_osbuild.py @@ -264,7 +264,7 @@ class TestDescriptions(unittest.TestCase): index = osbuild.meta.Index(os.curdir) modules = [] - for klass in ("Assembler", "Input", "Source", "Stage"): + for klass in ("Assembler", "Device", "Input", "Mount", "Source", "Stage"): mods = index.list_modules_for_class(klass) modules += [(klass, module) for module in mods]