Update test suite
[yangtools.git] / codec / yang-data-codec-gson / src / test / resources / yt1473 / bar.yang
1 module bar {
2   namespace barns;
3   prefix bar;
4
5   import foo { prefix foo; }
6
7   identity two {
8     base foo:one;
9   }
10
11   leaf-list str {
12     type string;
13   }
14
15   leaf-list foo {
16     type identityref {
17       base foo:one;
18     }
19   }
20
21   leaf-list bar {
22     type instance-identifier;
23   }
24
25   leaf-list bee {
26     type foo:bitz;
27   }
28
29   leaf baz {
30     type instance-identifier;
31   }
32 }