Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / negative-scenario / testfile7.yang
1 module testfile7 {
2     yang-version 1;
3     namespace "urn:simple.test7.demo";
4     prefix "t7";
5
6     import testfile8 {
7         prefix "t8";
8         revision-date 2013-08-03;
9     }
10
11     organization "opendaylight";
12     contact "http://www.opendaylight.org/";
13
14     revision "2013-08-03" {
15         reference " WILL BE DEFINED LATER";
16     }
17
18     augment "/t8:interfaces/t8:ifEntry" {
19         when "if:leafType='ds1'";
20         leaf linkleaf {
21             mandatory true;
22             type binary;
23         }
24     }
25
26 }