Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / bugs / bug3799 / test_submodule.yang
1 submodule test_submodule {\r
2 \r
3     belongs-to "test_module" {\r
4         prefix "sub";\r
5     }\r
6 \r
7     organization "some organisation";\r
8 \r
9     revision 2015-05-05 {\r
10         description\r
11                 "submodule for testing with grouping";\r
12     }\r
13 \r
14     grouping foo {\r
15         leaf bar {\r
16             description "some description";\r
17             type uint64;\r
18         }\r
19     }\r
20 \r
21     notification baz {\r
22         description "container using grouping";\r
23         uses foo;\r
24     }\r
25 }\r