Adjust test suite parser update to conform with API changes
[yangtools.git] / yang / yang-parser-impl / src / test / resources / rfc7950 / bug9241 / foo.yang
1 module foo {
2     namespace foo;
3     prefix foo;
4     yang-version 1.1;
5
6     revision 2017-10-13;
7
8     container action-cont {
9         action action-in-cont {
10
11         }
12     }
13
14     augment "/action-cont/action-in-cont/input" {
15         leaf augmented-leaf-in-input {
16             type string;
17         }
18     }
19
20     augment "/action-cont/action-in-cont/output" {
21         leaf augmented-leaf-in-output {
22             type string;
23         }
24     }
25 }