Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / augment-group / test-augment-uses-grouping.yang
diff --git a/binding2/mdsal-binding2-generator-impl/src/test/resources/augment-group/test-augment-uses-grouping.yang b/binding2/mdsal-binding2-generator-impl/src/test/resources/augment-group/test-augment-uses-grouping.yang
deleted file mode 100644 (file)
index 2bee56a..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-module augment-test-uses-grouping {
-    prefix "foo";
-    namespace "org.test.augment.uses.grouping";
-
-    container foo1 {
-        leaf my-leaf {
-            type string;
-        }
-    }
-
-    augment /foo:foo1 {
-        uses grp {
-           augment my-cont {
-              leaf my-uses-grp-leaf {
-                  type string;
-              }
-           }
-        }
-
-        leaf bar {
-            type string;
-        }
-    }
-
-    augment /foo:foo1 {
-        leaf baz {
-            type string;
-        }
-    }
-
-    grouping grp {
-        container my-cont {
-            leaf my-grp-leaf {
-              type string;
-            }
-        }
-    }
-}
\ No newline at end of file