Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / stmt-test / identity / identity-test.yang
1 module identity-test {
2     namespace "identity.test";
3     prefix id;
4
5     identity root-identity {
6         description "root";
7     }
8
9     identity child-identity-1 {
10         description "child-identity-1";
11         base root-identity;
12     }
13
14     identity child-identity-2 {
15         description "child-identity-2";
16         base root-identity;
17     }
18
19     identity child-identity-1-2 {
20         description "child-identity-1-2";
21         base child-identity-1;
22     }
23
24     container root-container {
25     }
26 }