Populate codec/ directory
[yangtools.git] / yang / yang-data-codec-gson / src / test / resources / bug-4969 / yang / foo.yang
diff --git a/yang/yang-data-codec-gson/src/test/resources/bug-4969/yang/foo.yang b/yang/yang-data-codec-gson/src/test/resources/bug-4969/yang/foo.yang
deleted file mode 100644 (file)
index ad3ac16..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-module foo {
-    namespace "foo";
-    prefix foo;
-
-    import bar { prefix bar; revision-date 2016-01-22; }
-
-    revision "2016-01-22" {
-        description "Initial version";
-    }
-
-    container root {
-        leaf ref1 {
-            type bar:ref1;
-        }
-        leaf ref2 {
-            type bar:ref2;
-        }
-        leaf ref3 {
-            type bar:ref3;
-        }
-        leaf ref4 {
-            type leafref {
-                path "/bar:root/bar:l1";
-            }
-        }
-    }
-}