Reformulate YangInstanceIdentifierWriterTest
[yangtools.git] / data / yang-data-api / src / test / resources / YT1392 / test.yang
1 module test {
2   namespace test;
3   prefix test;
4
5   container container-1 {
6     container container-2 {
7       container container-3 {
8         container payload-container {
9           leaf payload-leaf {
10             type string;
11           }
12         }
13       }
14     }
15   }
16
17   choice choice-node {
18     container container-in-case;
19   }
20
21   list list-1 {
22     key list-1-key;
23
24     leaf list-1-key {
25       type string;
26     }
27
28     container container-1;
29   }
30
31   leaf-list list-list {
32     type string;
33   }
34 }