Migrate YANG inputs for yang-data-impl
[yangtools.git] / data / yang-data-impl / src / test / resources / org / opendaylight / yangtools / yang / data / impl / codec / xml / xml-doc-test.yang
diff --git a/data/yang-data-impl/src/test/resources/org/opendaylight/yangtools/yang/data/impl/codec/xml/xml-doc-test.yang b/data/yang-data-impl/src/test/resources/org/opendaylight/yangtools/yang/data/impl/codec/xml/xml-doc-test.yang
deleted file mode 100644 (file)
index 8efbea4..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-module xml-doc-test {
-    yang-version 1;
-    namespace "urn:opendaylight:controller:xml:doc:test";
-    prefix "xmldt";
-
-    revision 2014-07-28 {
-       description "Initial test";
-    }
-
-    container cont {
-
-        list l {
-            key "id";
-
-            leaf id {
-                type string;
-            }
-        }
-    }
-
-    typedef custom-instance-identifier {
-        type instance-identifier;
-    }
-
-    rpc test {
-        input {
-            leaf a {
-                type string;
-            }
-
-            leaf ref {
-                type custom-instance-identifier;
-            }
-        }
-    }
-
-
-}