Bug 8083: Preliminary unit tests
[yangtools.git] / yang / yang-data-codec-gson / src / test / resources / bug8083 / yang / bar.yang
diff --git a/yang/yang-data-codec-gson/src/test/resources/bug8083/yang/bar.yang b/yang/yang-data-codec-gson/src/test/resources/bug8083/yang/bar.yang
new file mode 100644 (file)
index 0000000..7e6ad76
--- /dev/null
@@ -0,0 +1,17 @@
+module example-barmod {
+
+    namespace "http://example.com/barmod";
+    prefix "barmod";
+
+    import example-foomod {
+        prefix "foomod";
+    }
+
+    augment "/foomod:top/foomod:foo-list" {
+        container bar-container {
+            leaf bar-leaf {
+                type string;
+            }
+        }
+    }
+}
\ No newline at end of file