commit | 4e53f9b14d28841a1b99149d98d1c3364252dbaa | [log] [tgz] |
---|---|---|
author | janani b <janani.b@huawei.com> | Tue Apr 26 18:49:20 2016 +0530 |
committer | Gerrit Code Review <gerrit@onlab.us> | Wed Apr 27 04:24:27 2016 +0000 |
tree | f5339d75e9b9d2773a83ae3df3ca35a1028693c0 | |
parent | ee35d55c400fa9ac92f91aa4a0a0fc023cd5fb7d [diff] [blame] |
YANG uses and UT Change-Id: Id3ec5cfed2b8e2a7d2d580786c70b5804f03ecfa
diff --git a/utils/yangutils/src/test/resources/SelfResolutionWhenUsesAndGroupingAtRootLevelGroupingWithChild.yang b/utils/yangutils/src/test/resources/SelfResolutionWhenUsesAndGroupingAtRootLevelGroupingWithChild.yang new file mode 100644 index 0000000..f4f12b0 --- /dev/null +++ b/utils/yangutils/src/test/resources/SelfResolutionWhenUsesAndGroupingAtRootLevelGroupingWithChild.yang
@@ -0,0 +1,16 @@ +module Test { + yang-version 1; + namespace http://huawei.com; + prefix Ant; + uses treat; + grouping treat { + leaf treat{ + type String; + } + container test{ + leaf leaf2{ + type String; + } + } + } +}