Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / bugs / bug6972 / foo.yang
1 module foo {
2     namespace foo-ns;
3     prefix foo-prefix;
4
5     revision 2016-10-20;
6
7     grouping foo {
8         leaf foo {
9             type string;
10             units foo;
11         }
12     }
13
14     grouping export {
15         uses foo;
16     }
17 }