summaryrefslogtreecommitdiffstats
path: root/infra/data-impl/src/test/resources/test-diff.yang
diff options
context:
space:
mode:
Diffstat (limited to 'infra/data-impl/src/test/resources/test-diff.yang')
-rw-r--r--infra/data-impl/src/test/resources/test-diff.yang72
1 files changed, 72 insertions, 0 deletions
diff --git a/infra/data-impl/src/test/resources/test-diff.yang b/infra/data-impl/src/test/resources/test-diff.yang
index b7a0c7e7f..f86ad32a7 100644
--- a/infra/data-impl/src/test/resources/test-diff.yang
+++ b/infra/data-impl/src/test/resources/test-diff.yang
@@ -28,6 +28,32 @@ module test-diff {
}
}
+ container nested-container {
+ list nested-list-in-container {
+ key "name";
+
+ leaf name {
+ type string;
+ }
+ }
+
+ leaf nested-container-val {
+ type string;
+ }
+
+ leaf-list nested-container-leaf-list {
+ type string;
+ }
+
+ choice nested-choice {
+ case nested-case{
+ leaf under-nested-case{
+ type string;
+ }
+ }
+ }
+ }
+
list nested-list {
key "name";
@@ -50,6 +76,52 @@ module test-diff {
}
}
+ augment /top-container/nested-container {
+ container under-aug-container{
+ leaf under-aug-cont-leaf{
+ type string;
+ }
+ }
+
+ leaf under-aug-leaf {
+ type string;
+ }
+
+ list under-aug-list {
+ key under-aug-list-key;
+ leaf under-aug-list-key{
+ type string;
+ }
+ }
+
+ leaf-list under-aug-leaflist{
+ type string;
+ }
+ }
+
+ augment /top-container/nested-container/under-aug-container {
+ container nested-under-aug-container {
+ leaf nested-under-aug-container-leaf {
+ type string;
+ }
+ }
+
+ leaf nested-under-aug-leaf{
+ type string;
+ }
+
+ list nested-under-aug-list{
+ key nested-under-aug-list-key;
+ leaf nested-under-aug-list-key{
+ type string;
+ }
+ }
+
+ leaf-list nested-under-aug-leaf-list {
+ type string;
+ }
+ }
+
container with-choice {
choice choice {