Populate codec/ directory
[yangtools.git] / yang / yang-data-codec-xml / src / test / resources / anyxml-support / serialization / baz.yang
diff --git a/yang/yang-data-codec-xml/src/test/resources/anyxml-support/serialization/baz.yang b/yang/yang-data-codec-xml/src/test/resources/anyxml-support/serialization/baz.yang
deleted file mode 100644 (file)
index 9cd2233..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-module baz {
-    namespace "baz";
-    prefix baz;
-
-    import yang-ext { prefix ext; revision-date 2013-07-09; }
-
-    container baz {
-        container my-container-1 {
-            leaf my-leaf-1 {
-                type string;
-            }
-        }
-
-        container my-container-2 {
-            container inner-container {
-                leaf my-leaf-2 {
-                    type string;
-                }
-            }
-            leaf my-leaf-3 {
-                type string;
-            }
-        }
-
-        anyxml my-anyxml-data {
-            ext:anyxml-schema-location "/baz/my-container-2";
-        }
-    }
-}