summaryrefslogtreecommitdiffstats
path: root/v3po/data-impl/src/test/resources/test-diff.yang
diff options
context:
space:
mode:
Diffstat (limited to 'v3po/data-impl/src/test/resources/test-diff.yang')
-rw-r--r--v3po/data-impl/src/test/resources/test-diff.yang37
1 files changed, 37 insertions, 0 deletions
diff --git a/v3po/data-impl/src/test/resources/test-diff.yang b/v3po/data-impl/src/test/resources/test-diff.yang
new file mode 100644
index 000000000..7e8721f00
--- /dev/null
+++ b/v3po/data-impl/src/test/resources/test-diff.yang
@@ -0,0 +1,37 @@
+module test-diff {
+ yang-version 1;
+ namespace "urn:opendaylight:params:xml:ns:yang:test:diff";
+ prefix "td";
+
+ revision "2015-01-05" {
+ description "Initial revision";
+ }
+
+ container top-container {
+ leaf string {
+ type string;
+ }
+
+ list nested-list {
+ key "name";
+
+ leaf name {
+ type string;
+ }
+
+ leaf text {
+ type string;
+ }
+
+ list deep-list {
+ key "name";
+
+ leaf name {
+ type string;
+ }
+
+ }
+ }
+ }
+
+}