Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / uses-statement / test-augment-statement2.yang
diff --git a/binding2/mdsal-binding2-generator-impl/src/test/resources/uses-statement/test-augment-statement2.yang b/binding2/mdsal-binding2-generator-impl/src/test/resources/uses-statement/test-augment-statement2.yang
deleted file mode 100644 (file)
index b52c044..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-module test-augment-statement2 {
-    yang-version 1.1;
-
-    namespace "urn:test:augment:statement2";
-    prefix test-augment-statement2;
-    organization "test.type.org";
-    revision "2017-07-10";
-
-    import test-augment-statement1 {
-        prefix "s1";
-    }
-
-    grouping s2-grp {
-        leaf leaf-s2-grp {
-            type string;
-        }
-
-    }
-
-    container bar {
-    }
-
-    augment "/s1:top" {
-        container bar1 {
-        }
-        leaf leaf-s2-aug {
-            type string;
-        }
-        uses s2-grp;
-    }
-
-    augment "/s1:top" {
-        container bar2 {
-        }
-
-        uses s1:s1-grp;
-    }
-}