Bug 8291 - Unit test
[yangtools.git] / yang / yang-data-impl / src / test / resources / bug8291 / foo.yang
diff --git a/yang/yang-data-impl/src/test/resources/bug8291/foo.yang b/yang/yang-data-impl/src/test/resources/bug8291/foo.yang
new file mode 100644 (file)
index 0000000..3c7fc93
--- /dev/null
@@ -0,0 +1,23 @@
+module odl-datastore-test {
+    yang-version 1;
+    namespace "foo";
+    prefix foo;
+
+    container root {
+        list outer-list {
+            key "id";
+            leaf id {
+                type uint16;
+            }
+           list inner-list {
+                key name;
+                leaf name {
+                    type string;
+                }
+                leaf value {
+                    type string;
+                }
+            }
+        }
+    }
+}
\ No newline at end of file