Update test suite
[yangtools.git] / codec / yang-data-codec-gson / src / test / resources / yt1473 / foo.yang
index 9690484b8b601ef585c778e3b10cee6207fdde0e..e1f156ac8871aa812509944fd930a5de66c7d99e 100644 (file)
@@ -4,6 +4,14 @@ module foo {
 
   identity one;
 
+  typedef bitz {
+    type bits {
+      bit one;
+      bit two;
+      bit three;
+    }
+  }
+
   list foo {
     key str;
     leaf str {
@@ -26,4 +34,11 @@ module foo {
       type instance-identifier;
     }
   }
+
+  list bee {
+    key bts;
+    leaf bts {
+      type bitz;
+    }
+  }
 }