Populate data/ hierarchy
[yangtools.git] / yang / yang-data-impl / src / test / resources / bug-5830 / foo-presence.yang
diff --git a/yang/yang-data-impl/src/test/resources/bug-5830/foo-presence.yang b/yang/yang-data-impl/src/test/resources/bug-5830/foo-presence.yang
deleted file mode 100644 (file)
index af03827..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-module foo-presence {
-    yang-version 1;
-    namespace "foo";
-    prefix foo;
-
-    revision 2016-05-17 {
-        description "test";
-    }
-
-    container task-container {
-        list task {
-            key "task-id";
-
-            leaf task-id {
-                type string;
-            }
-            leaf task-mandatory-leaf {
-                type string;
-                mandatory true;
-            }
-
-            container task-data {
-                presence "Task data";
-                leaf mandatory-data {
-                    type string;
-                    mandatory true;
-                }
-                leaf other-data {
-                    type string;
-                }
-            }
-        }
-    }
-}