Populate data/ hierarchy
[yangtools.git] / yang / yang-data-impl / src / test / resources / ordered-list-modification-test.yang
diff --git a/yang/yang-data-impl/src/test/resources/ordered-list-modification-test.yang b/yang/yang-data-impl/src/test/resources/ordered-list-modification-test.yang
deleted file mode 100644 (file)
index 272ef5c..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-module ordered-list-modification-test {
-    namespace "ordered-list-modification-test";
-    prefix "olmt";
-
-    container parent-container {
-        container child-container {
-            list parent-ordered-list {
-                ordered-by user;
-
-                key "parent-key-leaf";
-
-                leaf parent-key-leaf {
-                    type string;
-                }
-
-                leaf parent-ordinary-leaf {
-                    type string;
-                }
-
-                list child-ordered-list {
-                    ordered-by user;
-
-                    key "child-key-leaf";
-
-                    leaf child-key-leaf {
-                        type string;
-                    }
-
-                    leaf child-ordinary-leaf {
-                        type string;
-                    }
-                }
-            }
-        }
-    }
-}
\ No newline at end of file