Populate codec/ directory
[yangtools.git] / yang / yang-data-codec-xml / src / test / resources / foo.yang
diff --git a/yang/yang-data-codec-xml/src/test/resources/foo.yang b/yang/yang-data-codec-xml/src/test/resources/foo.yang
deleted file mode 100644 (file)
index ea912d0..0000000
+++ /dev/null
@@ -1,72 +0,0 @@
-module foo {
-    namespace "foo-namespace";
-    prefix "f";
-
-    identity ident-base;
-    identity ident-one {
-        base ident-base;
-    }
-
-    typedef union-type {
-        type union {
-            type uint8;
-            type identityref {
-                base ident-base;
-            }
-        }
-    }
-
-    container parent-container {
-
-        container leaf-container {
-
-            leaf union-identityref-leaf {
-                type union-type;
-            }
-
-            leaf int32-leaf {
-                type int32;
-            }
-
-            leaf decimal64-leaf {
-                type decimal64 {
-                    fraction-digits 2;
-                }
-            }
-
-            leaf string-leaf {
-                type string;
-            }
-
-            leaf leafref-leaf {
-                type leafref {
-                    path "../string-leaf";
-                }
-            }
-
-            leaf empty-leaf {
-                type empty;
-            }
-
-            leaf boolean-leaf {
-                type boolean;
-            }
-
-            leaf enum-leaf {
-                type enumeration {
-                    enum zero;
-                    enum one;
-                    enum five {
-                        value 5;
-                    }
-                }
-            }
-        }
-
-        container anyxml-container {
-            anyxml my-anyxml;
-        }
-    }
-
-
-}
\ No newline at end of file