From 14d37304d8b83efc099ba19d6f3e7d5d53fead29 Mon Sep 17 00:00:00 2001 From: JvD_Ericsson Date: Thu, 7 Dec 2023 15:33:09 +0000 Subject: Clean up CSIT Test - Removed gitignore from csit and made it top level - Removed tabs from all files - Created sub-folder for cps-core and ncmp in the data folder - Deleted csit/data/postModuleRequestBody.json, was not used - Removed setting variable for most response.json() calls Issue-Id: CPS-734 Signed-off-by: JvD_Ericsson Change-Id: I32fd5b4f5a0132987a4684c336846b86df7b49e7 --- csit/data/cps-core/test-tree.yang | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 csit/data/cps-core/test-tree.yang (limited to 'csit/data/cps-core/test-tree.yang') diff --git a/csit/data/cps-core/test-tree.yang b/csit/data/cps-core/test-tree.yang new file mode 100644 index 0000000000..faba8a11d4 --- /dev/null +++ b/csit/data/cps-core/test-tree.yang @@ -0,0 +1,24 @@ +module test-tree { + yang-version 1.1; + + namespace "org:onap:cps:test:test-tree"; + prefix tree; + revision "2020-02-02"; + + container test-tree { + list branch { + key "name"; + leaf name { + type string; + } + container nest { + leaf name { + type string; + } + leaf-list birds { + type string; + } + } + } + } +} -- cgit 1.2.3-korg