Refactor mdsal-binding-generator artifacts
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / resources / simple-leaf-list-demo.yang
diff --git a/binding/mdsal-binding-generator-impl/src/test/resources/simple-leaf-list-demo.yang b/binding/mdsal-binding-generator-impl/src/test/resources/simple-leaf-list-demo.yang
deleted file mode 100644 (file)
index c25f305..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-module simple-leaf-list-demo {
-    yang-version 1;
-    namespace "urn:simple.leaf-list.demo";
-    prefix "scd";
-
-    organization "OPEN DAYLIGHT";
-    contact "http://www.opendaylight.org/";
-
-    description "
-        This module contains the definitions of elements that creates network
-        topology i.e. definition of network nodes and links. This module is
-        not designed to be used solely for network representation. This module
-        SHOULD be used as base module in defining the network topology.
-    ";
-
-    revision "2012-02-08" {
-        reference " WILL BE DEFINED LATER";
-    }
-
-    revision "2010-02-08" {
-        reference " WILL BE DEFINED LATER";
-    }
-
-    container simple-container {
-
-        leaf-list foo {
-            type int32;
-        }
-
-        leaf bar {
-            type string;
-            config true;
-        }
-
-        container nested-container {
-            leaf foo {
-                type uint8;
-            }
-
-            leaf-list bar {
-                type string;
-                config true;
-            }
-        }
-    }
-}
\ No newline at end of file