Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / semantic-statement-parser / multiple-revisions / testrev.yang
1 module testrev {
2     yang-version 1;
3     namespace "urn:tstrev:yang";
4     prefix "tstrev";
5
6     import importedrevtest { prefix "imprevtst"; }
7
8     description "This is a test module";
9
10     revision 2001-01-01 {
11         description "initial version";
12     }
13
14     container mycontainer {
15         leaf myleaf {
16             type imprevtst:date-and-time;
17         }
18     }
19 }