YANGTOOLS-706: Split out yang-parser-rfc7950
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / bugs / bug3799 / test_module.yang
1 module test_module {\r
2 \r
3     namespace "http://www.example.com/test";\r
4     prefix "test";\r
5 \r
6     include "test_submodule";\r
7 \r
8     organization "some organisation";\r
9 \r
10     description\r
11         "Testing including a submodule with a different revision number";\r
12 \r
13     revision 2014-06-15 {\r
14         description "some more changes";\r
15     }\r
16     revision 2013-06-15 {\r
17         description "some changes";\r
18     }\r
19 \r
20     container some_container {\r
21 \r
22         description\r
23                 "some container";\r
24     }\r
25 }\r