Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / choice / test-choice.yang
diff --git a/binding2/mdsal-binding2-generator-impl/src/test/resources/choice/test-choice.yang b/binding2/mdsal-binding2-generator-impl/src/test/resources/choice/test-choice.yang
deleted file mode 100644 (file)
index e2e7e80..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-module test-choice {
-    yang-version 1;
-    namespace "org.test.choice";
-    prefix "tstch";
-
-    container food {
-        choice snack {
-            case sports-arena {
-                leaf pretzel {
-                    type empty;
-                }
-
-                leaf beer {
-                    type empty;
-                }
-            }
-
-            case late-night {
-                leaf chocolate {
-                    type enumeration {
-                        enum dark;
-                        enum milk;
-                        enum first-available;
-                    }
-                }
-            }
-        }
-    }
-}