From 95811c1c0d66db3110ca3d303c825e99c8ca16b3 Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Fri, 12 Feb 2021 11:35:36 +0000 Subject: [PATCH] test/fmt_v2: add an sample input to the manifest Add a sample input to the basic test manifest so we check schema validation, loading and describing of inputs. --- test/mod/test_fmt_v2.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/test/mod/test_fmt_v2.py b/test/mod/test_fmt_v2.py index 61da87f7..21087fde 100644 --- a/test/mod/test_fmt_v2.py +++ b/test/mod/test_fmt_v2.py @@ -56,7 +56,16 @@ BASIC_PIPELINE = { "stages": [ { "type": "org.osbuild.noop", - "options": {"one": 3} + "options": {"one": 3}, + "inputs": { + "tree": { + "type": "org.osbuild.tree", + "origin": "org.osbuild.pipeline", + "references": { + "name:tree": {} + } + } + } } ] }