Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / operations / test-action.yang
diff --git a/binding2/mdsal-binding2-generator-impl/src/test/resources/operations/test-action.yang b/binding2/mdsal-binding2-generator-impl/src/test/resources/operations/test-action.yang
deleted file mode 100644 (file)
index ee3de4e..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-module test-action {
-    yang-version 1.1;
-    namespace "urn:test:action";
-    prefix "routed";
-
-    revision "2017-06-21" {
-        description
-            "Initial revision";
-    }
-
-    container my-cont {
-        action in-cont {
-            input {
-                leaf input-leaf {
-                    type string;
-                }
-            }
-
-            output {
-                leaf output-leaf {
-                    type string;
-                }
-            }
-        }
-    }
-
-    list my-list {
-        key "name";
-
-        leaf name {
-            type string;
-        }
-
-        action in-list {
-            input {
-                leaf input-list-leaf {
-                    type string;
-                }
-            }
-
-            output {
-                leaf output-list-leaf {
-                    type string;
-                }
-            }
-        }
-    }
-}