Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-rfc7950 / src / test / resources / bugs / bug6669 / valid / test3 / bar.yang
1 module bar {
2     namespace "bar";
3     prefix bar;
4
5     import foo { prefix foo; revision-date 2016-09-08; }
6
7     revision 2016-09-08;
8
9     augment /foo:root {
10         container bar {
11         }
12     }
13
14     augment /foo:root/bar:bar {
15         container bar1 {
16             presence "presence container";
17         }
18     }
19
20     augment /foo:root/bar:bar/bar:bar1 {
21         container bar2 {
22         }
23     }
24
25     augment /foo:root/bar:bar/bar:bar1/bar:bar2 {
26         list l {
27             min-elements 1;
28         }
29     }
30 }